ChartZoom property (XY Plot object)
Returns or sets the percentage that the chart will zoom in or out when using the zoom in and out buttons. Read/write. Single.
Syntax
XYPlot1
.ChartZoom
[ = 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 Single that specifies the chart zoom percentage. The minimum value is 1.00, and maximum value is 99.00.Example
Private Sub SetChartZoom() XYPlot1.ChartZoom = 70 End Sub
Provide Feedback