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! Learn more
Is it possible to set default font size for all visualizations in Power BI Desktop?
Hi Sue,
Check out the post on creating themes in Power BI.
https://powerbi.microsoft.com/en-us/documentation/powerbi-desktop-report-themes/
There are plenty of options available, but the JSON code below will set all fonts to 12 pt. Save it as a text file with a .json extension and then load it into Power BI Desktop with the Switch Themes button on the home ribbon.
SyntaxEditor Code Snippet
{
	"name": "All Fonts Set to 12 pt",
	"visualStyles":{
		"*":{			
			"*":{
				"*":[{
					"fontSize":12
				}]
				
			}
		}
	}
}Yours,
Fred
I should add, by the way, that this ability was JUST released in September 2017 (so it wasn't available when you first asked).
Is it possible to set default font size for all visualizations in Power BI Desktop?
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.