void SetAxisMinorTicks( int nAxisID, int nNumTicks )
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.
This method sets the number of minor tick marks. The minor tick marks are evenly spaced.
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 );