Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

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...
  • Icey's avatar
    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.