Forum Discussion
JSON Label for Slicer Selection Control Setting 'Multi-select with CTRL"
- 6 years ago
"slicer": {
"*": {
"selection": [{
"singleSelect": false,
"multiSelect": false,
"selectAllCheckboxEnabled": true
}]}
)
Hi TroyV ,
I tried to use the multiSelect but I did not change the toggle for Multi-Select with with Ctrl on.
Did anyone else have this problem?
Interesting Anonymous as long as you have it set to true I would think it would work? Maybe make sure that the Single Select option is set to false.
- Anonymous6 years agoNot applicable
Here is the code I am using.
{ "name": "Custom Theme", "dataColors": [ "#09264E", "#004AB5", "#FFA300", "#f2ebdb", "#D64550", "#197278", "#1AAB40", "#3BB44A", "#F2C811", "#D63817" ], "visualStyles": { "slicer": { "*": { "selection": [{ "singleSelect": false, "multiSelect" : true, "selectAllCheckboxEnabled": false }], "header": [{ "show": true }], "title": [{ "show": true, "fontColor": { "solid": { "color": "#333333" } }, "background": { "transparency": { "color": "" } }, "alignment": "left", "fontSize": 10, "fontFamily": "Segoe UI Semibold" }], "items": [{ "fontColor": { "solid": { "color": "#605E5C"}}, "background": { "solid": { "color": "#FFFFFF"}}, "outline": "None", "textSize": 9, "fontFamily": "Segoe UI" }], "visualHeader": [{ "show": false }] } } } }- SamCarlson6 years agoFrequent Visitor
Sorry if I'm misunderstanding what you are trying to do, but aren't the slicer selection settings in your JSON already the default?
- Anonymous6 years agoNot applicable
Yes they are but if I want to change "selectAllCheckboxEnabled" to true and have "mutiSelect" set to true, only "selectAllCheckboxEnabled" will change.
"selection": [{ "singleSelect": false, "multiSelect" : true, "selectAllCheckboxEnabled": true }],