StackAxesMode property (XY Plot object)
Returns or sets whether the axes are stacked on the plot surface.
Syntax
XYPlot1
.StackAxesMode
(Long stackType
)where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot 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() XYPlot1.StackAxesMode = 2 End Sub
Provide Feedback