StackAxesMode property (TrendPro object)
Returns or sets whether the axes are stacked on the plot surface.
Syntax
TrendPro1
.StackAxesMode
(Long stackType
)where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro object.stackType
- is a Long value that specifies how the axes are stacked. The valid values are:- 0: No axes are stacked.
- 1: The x-axes are stacked.
- 2: The y-axes are stacked.
- 3: Both x-axes and y-axes are stacked.
Example
Private Sub StackAxesMode() TrendPro1.StackAxesMode = 2 End Sub
Provide Feedback