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