Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Power BI theme Clustered bar chart x and y-axis color

Hi 

I'm using a JSON-file to change my theme in my report. 

 

I can't seem to change the font color of the clustered bar chart axis. 

- Do any of you know how to do it. My current string is written like this 

 

"clusteredBarChart":{
"*":{
"categoryAxis":[
{
"show":true,
"fontSize":12,
"fontFamily":"Neuron DemiBold"
}
],
"valueAxis":[
{
"show":false,
"fontSize":12,
"fontFamily":"Neuron DemiBold"
}
],
"labels":[
{
"show":true,
"fontSize":12,
"fontFamily":"Neuron DemiBold"
}
]
}
},

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

My sample code for your reference.

{
   "name":"My Theme",
   "visualStyles":{
      "*":{
         "*":{
            "*":[
               {
                  "color":{
                     "solid":{

                     }
                  }
               }
            ]
         }
      },
      "clusteredBarChart":{
         "*":{
            "categoryAxis":[
               {
                  "show":true,
                  "position":"Bottom",
                  "labelColor":{
                     "solid":{
                        "color":"#fd2666"
                     }
                  },
                  "fontSize":12,
                  "fontFamily":"Times New Roman"
               }
            ]
         }
      },
      "clusteredColumnChart":{
         "*":{
            "categoryAxis":[
               {
                  "show":true,
                  "labelColor":{
                     "solid":{
                        "color":"#fd2666"
                     }
                  },
                  "fontSize":12,
                  "fontFamily":"Arial"
               }
            ]
         }
      }
   }
}

 

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

My sample code for your reference.

{
   "name":"My Theme",
   "visualStyles":{
      "*":{
         "*":{
            "*":[
               {
                  "color":{
                     "solid":{

                     }
                  }
               }
            ]
         }
      },
      "clusteredBarChart":{
         "*":{
            "categoryAxis":[
               {
                  "show":true,
                  "position":"Bottom",
                  "labelColor":{
                     "solid":{
                        "color":"#fd2666"
                     }
                  },
                  "fontSize":12,
                  "fontFamily":"Times New Roman"
               }
            ]
         }
      },
      "clusteredColumnChart":{
         "*":{
            "categoryAxis":[
               {
                  "show":true,
                  "labelColor":{
                     "solid":{
                        "color":"#fd2666"
                     }
                  },
                  "fontSize":12,
                  "fontFamily":"Arial"
               }
            ]
         }
      }
   }
}

 

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Anonymous
Not applicable

Thank you! 

It worked like a charm! 

Do you also happen to know how i: 
1. Make the direction of the data labels vertical and color them 
2. Make the gridlines filled 

I found out that it was the clustered column chart and not the clustered bar chart i was working in (My chart names are in danish) 🙂 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.