ActivePlottingAlgorithmLinear property (XY Plot object)
Returns or sets whether a linear plotting algorithm or a sample and hold plotting algorithm is used. Read/write. Boolean.
Syntax
XYPlot1
.ActivePlottingAlgorithm
[ = state
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot object.state -
is a parameter of the type Boolean that can be set to one of the following:- True: Applies a linear plotting algorithm, which connects data points in a progressive line.
- False: Applies a sample and hold plotting algorithm, which draws flat lines between time periods and makes adjustments along the y-axis when a change occurs.
Example
Private Sub SetActivePlottingAlgorithmLinear() XYPlot1.ActivePlottingAlgorithmLinear = True End Sub
Provide Feedback