MinorUnitsInterval Property
Syntax
CWTicks3D.MinorUnitsInterval
Data Type
Purpose
Specifies the number of units between minor divisions.
Remarks
Setting this property overrides the MinorDivisions and MajorDivisions properties and causes the MajorUnitsInterval and MajorUnitsBase properties to take effect.
Example
'Place major ticks every 2 units (even numbers)
CWGraph3D1.Axes.Item(1).MajorUnitsInterval = 2
'Place minor ticks every .5 units
CWGraph3D1.Axes.Item(1).MajorUnitsInterval = .5
'The unit's base is 0
CWGraph3D1.Axes.Item(1).MajorUnitsBase = 0
'To specify ticks at odd numbers, change the base to 1
CWGraph3D1.Axes.Item(1).MajorUnitsBase = 1
'Now, there will be major ticks at ..., -3, -1, 1, 3, 5, ...