ActiveXAxisMinorTickMarks property
Returns or sets the number of x-axis minor tick marks for the current tag in the runtime chart. Read/write. Single.
Syntax
XYPlo1
.ActiveXAxisMinorTickMarks
[ = value
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot object.value
– is a parameter of the type Single that specifies the number of x-axis minor tick marks. The minimum value is 0, and the maximum value is 25.Example
Private Sub SetActiveXAxisMinorTickMarks() XYPlo1.ActiveXAxisMinorTickMarks = 2 End Sub
Provide Feedback