Forum Discussion
ThomasVanhelden
4 years agoFrequent Visitor
Custom Report Theme - Card Visual - Callout Value Font Size
Hi all, How can you change the card visual callout value's font (size) in a custom report theme json? I've tried two methods: 1) Via the visualStyles of Card: "visualStyles": { "card": { ...
allanp5
2 years agoFrequent Visitor
I realise that this is an old question, but I was faced with the same issue and couldn't find an answer. I found a solution by renaming "labels" as "dataLabels"
e.g.
"dataLabels": [
{
"color": {
"solid": {
"color": "#1EB5BA"
}
},
"labelDisplayUnits": 0,
"labelPrecision": 0,
"fontSize": 30,
"fontFamily": "Segoe UI SemiBold",
"bold": false,
"italic": false,
"underline": false,
"preserveWhitespace": true
}
],
This allows me to control the callout value, but only time will tell whether this is the correct solution.