Forum Discussion
jaykwilliams
7 years agoFrequent Visitor
Chiclet Slicer / Themes JSON Edits
Is there currently a way to code a JSON theme file to adjust the default behavior for a chiclet slicer? My JSON file sets global visual styles (title) that are not applied to the chiclet slicers. ...
v-viig
7 years agoCommunity Champion
PBI Themes used to work with Custom Visuals.
Will ask the development team to investigate this issue deeper.
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
jefferiesk
7 years agoFrequent Visitor
I am also seeing this issues. if I add the follwoing code to my JSON file, the border styling is correctly added but the header and row styling is not.
"ChicletSlicer1448559807354": {
"*": {
"header": [{
"show": false
}],
"rows": [{
"selectedColor": { "solid": { "color": "#01a982"}},
"borderStyle": "Rounded"
}],
"border": [{
"show": true
}]
}
}