In general a series is not supposed to be added twice to a chart (or added to different charts).
In the following code the second Add method throws an ArgumentException with message "The specified element is already added to the document".
NGridSurfaceSeries series = (NGridSurfaceSeries)chart.Series.Add(SeriesType.GridSurface);
chart.Series.Add(series);
It is strange that you've managed to add the same series to a chart two times.
Best Regards,
Nevron Support Team