I want to hide all the series's at a time , till now i use $.each hide all the series one by one but that degrading the performance i want hide all at a time..is there another way..? i had tried this..
$.each(series, function(index, series1) {
series1.hide();
});