Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi,
I've couple of general questions on objects and properties for which I could not find any real explanation/documentation.
"fontSize" : {
"displayName": "Font Size",
"type": {
"formatting": {
"fontSize": true
}
}
}module powerbi.extensibility.visual {
"use strict";
import DataViewObjectsParser = powerbi.extensibility.utils.dataview.DataViewObjectsParser;
export class TableVisualSettings extends DataViewObjectsParser {
public tableFormatting: tableFormatting = new tableFormatting();
}
export class tableFormatting {
public show: boolean = true;
public border: boolean = true;
public backgroundColor: string = "#FFFFFF";
public fontSize: number = 14;
}
}Solved! Go to Solution.
As mentioned here, the DataViewObjectsParser provides the simplest way in order to parse properties of the formatting panel. You may do validation in update method.
As mentioned here, the DataViewObjectsParser provides the simplest way in order to parse properties of the formatting panel. You may do validation in update method.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.