NChartValueAxisZoomToRegion Method (Single, Single, Single, Single) |
Zoom to given region by specifying the least and the greatest values that should be visible on the axis. If the
axis has array of ticks indices in this array can be used. Use this method after you updated data of the chart
with UpdateData call.
Namespace:
NChart3D_UWP
Assembly:
NChart3D_UWP (in NChart3D_UWP.dll)
Syntax public void ZoomToRegion(
float startValue,
float endValue,
float duration,
float delay
)
Public Sub ZoomToRegion (
startValue As Single,
endValue As Single,
duration As Single,
delay As Single
)
public:
virtual void ZoomToRegion(
[InAttribute] float startValue,
[InAttribute] float endValue,
[InAttribute] float duration,
[InAttribute] float delay
) sealed
Parameters
- startValue
- Type: SystemSingle
Least value that should be visible. - endValue
- Type: SystemSingle
Greatest value that should be visible. - duration
- Type: SystemSingle
Duration of the animation in seconds. - delay
- Type: SystemSingle
Delay of animation in seconds.
See Also