Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all!
Is there any way to set the axis titles to be disabled as a default? Maybe with a theme file (json)? I personally don't like them in my visualizations and it's a pain in the neck (on in the wrist) to always manually turn them off.
Solved! Go to Solution.
Hi @Anonymous ,
As mentioned by @SivaMani , you can change the corresponding properties by customizing the theme file. Here is a resource about "Snippets for assembling Power BI Themes", you can refer to it, the following is an example of Line.json:
Best Regards,
Community Support Team _ Joey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I got it! I had to change a little bit of the answer @SivaMani gave to get the desired outcome! This gave me the outcome I was looking for:
"categoryAxis":[{"show":true,"showAxisTitle": false}], "valueAxis":[{"show":true,"showAxisTitle": false}],
Hi @Anonymous ,
As mentioned by @SivaMani , you can change the corresponding properties by customizing the theme file. Here is a resource about "Snippets for assembling Power BI Themes", you can refer to it, the following is an example of Line.json:
Best Regards,
Community Support Team _ Joey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you both for the answers!
Did I understand correctly that you have to define this for each visual separately? If so, that's a bummer, but maybe it'll be beneficial in the long run to do a style file as complete as possible.
I got it! I had to change a little bit of the answer @SivaMani gave to get the desired outcome! This gave me the outcome I was looking for:
"categoryAxis":[{"show":true,"showAxisTitle": false}], "valueAxis":[{"show":true,"showAxisTitle": false}],
Sorry for the double post!
I tried your solutions, @SivaMani, but it removed all axis' information. I only want to remove the title information, not the values of the axis. The title is the text below the values.
@Anonymous,
Yes, you can do this with custom theme. Please check the below mentioned properties,
"categoryAxis":[{"show":false}],
"valueAxis":[{"show":false}]
Hope it will help you. I appreciate your kudos!
Thanks,
Siva Mani
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.