ActiveTraceLineColor property (XY Plot object)
Returns or sets the color of the trace line for the selected trace. Read/write. OLE_COLOR.
OLE_COLOR is a type definition that resolves to a Long.
Syntax
XYPlot1
.ActiveTraceLineColor
[ = value
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot object.value
- is an RGB color value that specifies the color of the trace line.Example
Private Sub SetActiveTraceLineColor() XYPlot1.ActiveTraceLineColor = RGB(0,0,0) End Sub
Provide Feedback