MindFusion.Charting Programmer's Guide

AxesChart.Zoom Method

See Also
 





Zooms the chart.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public void Zoom (
    Point start,
    Point end
)

Visual Basic  Copy Code

Public Sub Zoom ( _
    start As Point, _
    end As Point _
)

JavaScript  Copy Code

function Zoom (start, end)

 Parameters

start
The start Point of the chart area to zoom.
end
The end Point of the chart area to zoom.

 Remarks

Zooms the portion of the chart between the start and end points. Called autmoatically when Behavior is set to "Zoom". The start is the point at which the user has pressed the left mouse button; the end point is when the the user has lifted the mouse.

 See Also