ScatterPlot.DeleteCurve

Prototypes

void DeleteCurve( int nCurveNum )

Parameters

int nCurveNum
The number (1-based) of the curve you want to delete.

Remarks

This method deletes a curve from the plot.

Example
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 );