ActiveMarkerSize property (XY Plot object)
Returns or sets the size of the markers for the selected trace. Read/write. Long.
Syntax
XYPlot1
.ActiveMarkerSize
[ = value
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot object.value -
is a long value that specifies the size of the point marker. The minimum value is 1, and the maximum value is 20.Example
Private Sub SetActiveMarkerSize() XYPlot1.ActiveMarkerSize = 3 End Sub
Provide Feedback