I'm using a scatter plot and using the following functions to feed it data:
dijit.byId('widget_73')._setSeriesN(dac_array_x, 0, true);
dijit.byId('widget_73')._setSeriesN(dac_array_y, 0, false);
This works fine. But when I want to clear the series altogether, I am unable to do so. I've tried feeding it empty arrays, but this doesn't do anything. The graph just keeps its old data.
I'd like to either clear the series (in this case series 0) or momentarily disable it from being shown (while series 1 is still shown).