Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi guys,
I'm changin my report theme and got some visual actions changes in my json stylesheet:
"visualStyles": { "*": { "*": { "title": [{ "show": true, "fontColor": { "solid": { "color": "#FFFFFF" } }, "background": { "solid": { "color": "#52351f" } }, "allignment": "center", "fontSize": 11, "fontFamily": "Tahoma" }], "background": [{ "show": true, "color": { "solid" : { "color": "#FFFFFF" } }, "transparency": 0 }], "lockAspect": [{ "show": true }], "border": [{ "show": false }], "visualTooltip": [{ "type": "Default" }], "stylePreset": [{ "name": "None" }], "labels": [{ "fontColor": { "solid": { "color": "#000000" } } }] } }, "page": { "*": { "background": [{ "color": { "solid": { "color": "#e6e6e6" } }, "transparency": 0 }] } } }
Is there a possibility to change my fontfamily of the whole project?
Thanks in advance
Solved! Go to Solution.
Hi @miltenburger,
Please try to use following json code as theme, I move 'fontfamily' properties to global place to apply to all available visuals:
{ "name":"Change fontfamily", "visualStyles":{ "*":{ "*":{ "*":[ { "fontSize":11, "fontFamily":"Tahoma" } ], "title":[ { "show":true, "fontColor":{ "solid":{ "color":"#FFFFFF" } }, "background":{ "solid":{ "color":"#52351f" } }, "allignment":"center" } ], "background":[ { "show":true, "color":{ "solid":{ "color":"#FFFFFF" } }, "transparency":0 } ], "lockAspect":[ { "show":true } ], "border":[ { "show":false } ], "visualTooltip":[ { "type":"Default" } ], "stylePreset":[ { "name":"None" } ], "labels":[ { "fontColor":{ "solid":{ "color":"#000000" } } } ] } }, "page":{ "*":{ "background":[ { "color":{ "solid":{ "color":"#e6e6e6" } }, "transparency":0 } ] } } } }
Regards.
Xiaoxin Sheng
Hi @miltenburger,
Please try to use following json code as theme, I move 'fontfamily' properties to global place to apply to all available visuals:
{ "name":"Change fontfamily", "visualStyles":{ "*":{ "*":{ "*":[ { "fontSize":11, "fontFamily":"Tahoma" } ], "title":[ { "show":true, "fontColor":{ "solid":{ "color":"#FFFFFF" } }, "background":{ "solid":{ "color":"#52351f" } }, "allignment":"center" } ], "background":[ { "show":true, "color":{ "solid":{ "color":"#FFFFFF" } }, "transparency":0 } ], "lockAspect":[ { "show":true } ], "border":[ { "show":false } ], "visualTooltip":[ { "type":"Default" } ], "stylePreset":[ { "name":"None" } ], "labels":[ { "fontColor":{ "solid":{ "color":"#000000" } } } ] } }, "page":{ "*":{ "background":[ { "color":{ "solid":{ "color":"#e6e6e6" } }, "transparency":0 } ] } } } }
Regards.
Xiaoxin Sheng
User | Count |
---|---|
84 | |
74 | |
63 | |
51 | |
45 |
User | Count |
---|---|
101 | |
43 | |
41 | |
39 | |
36 |