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 someone help me?
I tried:
{"name":"Testfile",
"visualStyles":{
"*":{
"*":{
"*":[{
"fontSize":12,
"fontFamily":"Arial",
"color":{"solid":{}}
}
]
}
},
"clusteredColumnChart":{
"*":{
"legend":[{
"show":true,
"showTitle":false,
"labelColor":{
"solid":{
"color":"#FFFF00",
"fontFamily": "Arial Black"
}
}
}]
}
}
}
}
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.
2 Replies
- IceyCommunity 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.
- AnonymousNot applicable
Thanks for your solution!