Forum Discussion
Anonymous
6 years agoNot applicable
Json Theme File
For my example i want to define the settings for the Clustered Column Chart by my own I want to define the FontFamily, FontSize, don't allow the Title and change the color of the text Can someon...
- 6 years ago
Hi Anonymous ,
Try this:
{"name":"Testfile", "visualStyles":{ "*":{ "*":{ "*":[{ "fontSize":12, "fontFamily":"Arial", "color":{"solid":{}} } ] } }, "clusteredColumnChart":{ "*":{ "title":[{ "show":false }], "legend":[{ "show":true, "labelColor":{ "solid":{ "color":"#FFFF00", "fontFamily": "Arial Black" } } }] } } } }Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Icey
6 years agoCommunity Support
Hi Anonymous ,
Try this:
{"name":"Testfile",
"visualStyles":{
"*":{
"*":{
"*":[{
"fontSize":12,
"fontFamily":"Arial",
"color":{"solid":{}}
}
]
}
},
"clusteredColumnChart":{
"*":{
"title":[{
"show":false
}],
"legend":[{
"show":true,
"labelColor":{
"solid":{
"color":"#FFFF00",
"fontFamily": "Arial Black"
}
}
}]
}
}
}
}
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
6 years agoNot applicable
Thanks for your solution!