Plot.SetFrameWidth

Prototypes

void SetFrameWidth( int nWidth )

Parameters

int nWidth
The width of the frame around the Plot Area.

Remarks

This method sets the width of the framing box surrounding the Plot Area.

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.SetFrameWidth( 3 );
See Also

Plot.SetFrameStyle
Plot.SetFrameColor
Plot.ShowFrame