Forum Discussion

tjeee's avatar
tjeee
Frequent Visitor
8 years ago
Solved

Back Blackground Power Bi

Hi , I am currently having a issue regarding the background color of PowerBi display. Today the background has turned black without any reason. I did not edit anything , it happened when i first t...
  • v-jiascu-msft's avatar
    v-jiascu-msft
    8 years ago

    Hi All,

     

    This is the expected result of the themes. The fix is to update your theme file to be more specific with your visualStyles section, replacing one of the wildcards with a specific entity (visual type or formatting card name). Please refer to power-bi/desktop-report-themes#report-theme-json-file-format

    "visualStyles": {
            "*": {
                "*": {
                    "*": [
                        {
                            "fontSize": 12,
                            "fontFamily": "Calibri",
                            "color": {
                                "solid": {
                                    "color": "#000000"
                                }
                            }
                        }
                    ]
                }
            },
    

    Best Regards,

    Dale