customize power bi theme
1 TopicCustomize Power BI theme
I am creating a JSON file to customize the theme in Power BI. I used the clustered column chart as an example and was able to change the colors, X and Y axes (font, size and color). However, I am having difficulty modifying the data label. I will share my JSON file as I believe I am configuring something wrong, or does Power BI not support changing the data label via JSON? Json: { "name": "Custom Color Palette", "dataColors": [ "#01335C", "#467BED", "#FF6564", "#FFC150", "#1AB2AE", "#74e8ee", "#F0ECEE", "#808384" ], "background": "#FFFFFF", "foreground": "#000000", "tableAccent": "#467BED", "visualStyles": { "clusteredColumnChart": { "*": { "categoryAxis": [ { "labelColor": {"solid": {"color": "#000000"}}, "fontFamily": "Segoe UI", "fontSize": 20, "title": { "fontFamily": "Segoe UI", "fontSize": 20, "color": {"solid": {"color": "#000000"}} } } ], "valueAxis": [ { "labelColor": {"solid": {"color": "#000000"}}, "fontFamily": "Segoe UI", "fontSize": 20, "titleFontFamily": "Segoe UI", "titleFontSize": 20, "titleColor": {"solid": {"color": "#000000"}} } ], "dataLabel": { "show": true, "fontSize": 14, "fontFamily": "Segoe UI", "color": {"solid": {"color": "#FF6564"}}, "displayUnits": "None", "labelPosition": "InsideEnd" } } } } }Solved4.2KViews0likes6Comments