I know that I can get a chart series with code like this:
var chart = document.getElementById("container").ej2_instances[0];
chart.series[3].visible = document.getElementById("chkTempLow").checked;
But my chart has a dynamic number of series so I don't know the index of the series I want.
Is there any way to find/refer to a series by something other than it's index?
For example:
chart.series['lowTemp']
or
chart.series[getSeriesIndexByID]
Thanks,
Scott]