ActiveXAxisLineWidth property (XY Plot object)
Returns or sets the width of the x-axis line in the runtime chart. Read/write. Long.
Syntax
XYPlot1
.ActiveXAxisLineWidth
[= 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 width of the x-axis line. The minimum value is 1, and maximum value is 10.Example
Private Sub SetActiveXAxisLineWidth() XYPlot1.ActiveXAxisLineWidth = 2 End Sub
Provide Feedback