Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Is it possible in power bi to give Title of Line Chart, Table and KPI with Custom font.
Plus Contents of Table and Line chart with Arial. Refer the below image.
Solved! Go to Solution.
Hi @Baarathi88 ,
You may refer to desktop-report-themes#report-theme-json-file-format for details to import custom theme. You would change the "*" in the first codes to the proper parts you'd like to customize.
Common Format:
{
"name": "Green",
"dataColors": ["#568410", "#3A6108", "#70A322", "#915203", "#D79A12", "#bb7711", "#114400", "#aacc66"],
"background":"#FFFFFF",
"foreground": "#3A6108",
"tableAccent": "#568410",
"visualStyles":{
"*": {
"*": {
"*": [{
"fontFamily": "simsong"
}]
}
}
}
}
For example, customize font for the Table and Line chart visual.
{
"name": "Green",
"dataColors": ["#568410", "#3A6108", "#70A322", "#915203", "#D79A12", "#bb7711", "#114400", "#aacc66"],
"background":"#FFFFFF",
"foreground": "#3A6108",
"tableAccent": "#568410",
"visualStyles":{
"tableEx": {
"*": {
"*": [{
"fontFamily": "Arial Black"
}]
}
},
"lineChart": {
"*": {
"*": [{
"fontFamily": "Arial Black"
}]
}
}
}
}
For reference:
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Baarathi88 ,
You may refer to desktop-report-themes#report-theme-json-file-format for details to import custom theme. You would change the "*" in the first codes to the proper parts you'd like to customize.
Common Format:
{
"name": "Green",
"dataColors": ["#568410", "#3A6108", "#70A322", "#915203", "#D79A12", "#bb7711", "#114400", "#aacc66"],
"background":"#FFFFFF",
"foreground": "#3A6108",
"tableAccent": "#568410",
"visualStyles":{
"*": {
"*": {
"*": [{
"fontFamily": "simsong"
}]
}
}
}
}
For example, customize font for the Table and Line chart visual.
{
"name": "Green",
"dataColors": ["#568410", "#3A6108", "#70A322", "#915203", "#D79A12", "#bb7711", "#114400", "#aacc66"],
"background":"#FFFFFF",
"foreground": "#3A6108",
"tableAccent": "#568410",
"visualStyles":{
"tableEx": {
"*": {
"*": [{
"fontFamily": "Arial Black"
}]
}
},
"lineChart": {
"*": {
"*": [{
"fontFamily": "Arial Black"
}]
}
}
}
}
For reference:
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.