MindFusion.Charting Programmer's Guide

AxesChart.Zoom Method

See Also
 





Sets the selection indexes of the series so that only the graphics between those two points are drawn.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public virtual void Zoom (
    Point selectionStart,
    Point selectionEnd
)

Visual Basic  Copy Code

Public Overridable Sub Zoom ( _
    selectionStart As Point, _
    selectionEnd As Point _
)

JavaScript  Copy Code

function Zoom (selectionStart, selectionEnd)

 Parameters

selectionStart
The start of the selection.
selectionEnd
The end of the selection.

 Remarks

The method zooms only the graphics of the series in order to give more detailed view of the data. Use ZoomOut or ResetZoom to give the chart its initial appearance.

 See Also