Plot.SetAxisStyle

Prototypes

void SetAxisStyle( int nAxisID, int nStyle )

Parameters

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

int nStyle
A predefined constant specifying the line style to use to draw the axis. The valid values are SOLID, DASHED, DOTTED, DASHDOT, and DASHDOTDOT.

Remarks

This method sets the line style used to draw 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.SetAxisStyle( YAXIS, DOTTED );
See Also

Plot.SetAxisColor
Plot.SetAxisWidth