ActiveMarkerShape property (XY Plot object)
Returns or sets the shape of the point markers for the selected trace. Read/write. Long.
Syntax
XYPlot1
.ActiveMarkerShape
[ = 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 shape of the point marker. Valid values are:- Cross1 = 0
- Cross2 = 1
- Circle = 2
- Square = 3
- Triangle = 4
- FilledCircle = 5
- FilledSquare = 6
- FilledTriangle = 7
Example
Private Sub SetActiveMarkerShape() XYPlot1.ActiveMarkerShape = 3 End Sub
Provide Feedback