While you have hooks to manipulate with series data, I think better to clone it
first to not touch the real input series data in the main function Plot(...):
-- setData(data_);
++ var dataClone = $.extend(true, [], data_);
++ setData(dataClone);
And if some plugin changes data in any series, the real input data will not
change.
Original issue reported on code.google.com by milke...@gmail.com on 25 Nov 2011 at 1:09
Original issue reported on code.google.com by
milke...@gmail.com
on 25 Nov 2011 at 1:09