How to apply theme to rectangle shape in powerbi

Viewed 224

Objective is to fill all rectangle or any generic shapes with a specified color via theme.json file Docs: PowerBI Themes

I have tried this but it does not affect the fill color of any rectangle. (I have also reverted all formatting to default for rectangles)

...
"visualStyles": {
  "basicShape": {
    "*": {
       "fill": [{
          "show": true,
          "fillColor": {
            "solid": {
              "color": "#FFFFFF"
            }
          }
       }]
     }
  }
}
0 Answers
Related