Posted 28 October 2019, 5:49 pm EST
I have a bar chart with 2 series with a handler to catch when the selectionChanges. When I am finished I want to clear the selectionIndex so that the series that was selected no longer shows as having been selected. See below;
receiptsChart.selectionMode = wijmo.chart.SelectionMode.Point;
receiptsChart.selectionChanged.addHandler(function (e) {
var selectedIndex = e._selectionIndex
Do some stuff e._selectionIndex = null; });
I have also tried receiptsChart.selectionIndex = null;
Thanks, Ed