Plot.SetAxisWidth

Prototypes

void SetAxisWidth( int nAxisID, int nWidth )

Parameters

int nAxisID
A predefined constant specifying the axis. The valid values are XAXIS, YAXIS, and ZAXIS.

int nWidth
The width of the axis.

Remarks

This method sets the width of an axis.

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.SetAxisWidth( XAXIS, 2 );
See Also

Plot.SetAxisColor
Plot.SetAxisStyle