Plot.SetReferenceLineWidth

Prototypes

void SetReferenceLineWidth( int nWidth )

Parameters

int nWidth
The width of the reference lines.

Remarks

Reference lines are vertical or horizontal lines emanating from major tick marks. They can be used to superimpose a grid on the Plot Area.

This method sets the width of the reference lines.

Example
x = { 1 2 3 4 5 6 7 8 };
y = { 2 1 4 5 6 5 6 9 };
declare ScatterPlot plot = ScatterPlot.Create( "Sample Data", x, y );
plot.ShowReferenceLines();
plot.SetReferenceLineWidth( 3 );
See Also

Plot.SetReferenceLineStyle
Plot.SetReferenceLineColor
Plot.ShowReferenceLines