ActivePlottingAlgorithmLinear property (TrendPro object)
Returns or sets whether a linear plotting algorithm or a sample and hold plotting algorithm is used. Read/write. Boolean.
Syntax
TrendPro1
.ActivePlottingAlgorithm
[ = state
]where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro 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() TrendPro1.ActivePlottingAlgorithmLinear = True End Sub
Provide Feedback