Zoom of the chart. The default zoom is 1 which corresponds to the fitting the chart to screen (both in 2D and 3D).
The zooming is proportional. If you want non-proportional zoom in 2D mode, you should use ZoomToRegionFrom method of NChartValueAxis.
If you want to alter the initial zoom, you should change the value of this property after UpdateData call.
Namespace:
NChart3D_UWP
Assembly:
NChart3D_UWP (in NChart3D_UWP.dll)
Syntax public void ZoomTo(
float zoom,
float duration,
float delay
)
Public Sub ZoomTo (
zoom As Single,
duration As Single,
delay As Single
)
public:
virtual void ZoomTo(
[InAttribute] float zoom,
[InAttribute] float duration,
[InAttribute] float delay
) sealed
Parameters
- zoom
- Type: SystemSingle
New zoom of the chart. - duration
- Type: SystemSingle
Duration of the animation in seconds. - delay
- Type: SystemSingle
Delay of the animation in seconds.
See Also