Forum Discussion
SamCarlson
6 years agoFrequent Visitor
JSON Label for Slicer Selection Control Setting 'Multi-select with CTRL"
Short version: What is the JSON label for the Slicer Selection Control Setting "Multi-select with CTRL"? I found this code which has almost everything I need but since multi-select with ctrl is a...
- 6 years ago
"slicer": {
"*": {
"selection": [{
"singleSelect": false,
"multiSelect": false,
"selectAllCheckboxEnabled": true
}]}
)
Anonymous
6 years agoNot applicable
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?
annaB
1 year agoFrequent Visitor
I had this issue as well. "multiselect": true did not work for me. Through some experimenting, I figured out that the below code is instead the correct solution.
"strictSingleSelect": false
This also applies to the new Button slicer (a.k.a. the advancedSlicerVisual in JSON).
"selection": [{
"singleSelect": true,
"strictSingleSelect": false,
"selectAllCheckboxEnabled": false
}]