Plot.SetAxisMinorTicks

Prototypes

void SetAxisMinorTicks( int nAxisID, int nNumTicks )

Parameters

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

int nNumTicks
The number of minor tick marks you want displayed between each pair of major tick marks.

Remarks

This method sets the number of minor tick marks. The minor tick marks are evenly spaced.

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.SetAxisMinorTicks( YAXIS, 3 );
See Also

Plot.SetAxisNumericTicks
Plot.SetAxisTicks