Forum Discussion
How to add custom font
- Anonymous4 years ago
Hi romals29 ,
There is some kind of theme management on Power BI Service. You can apply JSON theme to a dashboard. See details - Use dashboard themes in the Power BI service - Power BI | Microsoft Docs .
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi
I am able to do this using JSON file where I have given the font type only.
This is working fine but in my pbix file I have 5 dashboards. its changing the font only in first dashboard and rest are still looks same.
But those visuals tooltips only getting update not the value's font.
Looks strange.
May someone please help me on this.
This is the JSON file code I have used
{
"name": "Custom Theme",
"visualStyles": {
"*": {
"*": {
"*": [
{
"fontFamily": "Algerian"
}
]
}
}
}
}