ActiveTraceNumericPrecision property (XY Plot object)
Returns or sets the number of decimal places to display for the selected trace. Read/write. Long.
Syntax
XYPlot1
.ActiveTraceNumericPrecision
[ = 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 number of decimal places. The minimum value is 0, and the maximum value is 7.Example
Private Sub SetActiveTraceNumericPrecision() XYPlot1.ActiveTraceNumericPrecision = 2 End Sub
Provide Feedback