Forum Discussion
Get slicer data from selectionChanged event
Hi acarlson
The selectionChanged event is raised whenever the user is changing the selected visual. selectedItems is a list of all selected visuals when more than one is selected.
report: models.IReport
page: models.IPage
visual?: models.IVisual
selectedItems?: models.IVisual[]
For referece: Selector.SelectionChanged Event
You may refer to this offical blog to learn more details about selectionChanged.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- acarlson4 years agoRegular Visitor
Hi Rico, thanks for the reply.
The selection changed event reference you gave seems to be for .net controls. I'm trying to get it through the power bi embedded javascript api. The timestamp slicer is an embedded visual, is it possible to get the selected items from within the javascript selectionChanged event?
This is what is returned from the event parameter
I tried using the getSlicerState() but that returns "getSlicerState is not a function" javascript error.
visual.on("selectionChanged", function (event) { console.log(event); let curV = powerbi.get(event.target); curV.getSlicerState().then(slicerState => { if (slicerState.filters.length > 0) filteredSlicers.push(slicerState) }) });Thanks!
- Mestu_Paul1 year agoHelper II
hello acarlson
Did you find any solution for this range slicer?