I want to hide all series in one go, so far I use $ .each to hide all series one after another, but it worsens the performance that I want to hide all in one go ... is there another way ..? I tried this.
$.each(series, function(index, series1) { series1.hide(); });
sasi
source share