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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.