void DeleteCurve( int nCurveNum )
int nCurveNum
The number (1-based) of the curve you want to delete.
This method deletes a curve from the plot.
x = { 1 2 3 4 5 6 7 8 }; y = { 2 1 2 4 3 5 6 9 }; declare ScatterPlot plot; plot = ScatterPlot.Create( "Sample Data", x, y ); plot.CreatePolyCurve( 1 ); plot.CreatePolyCurve( 2 ); plot.DeleteCurve( 1 );