MindFusion.Charting Programmer's Guide

BarChart.Zoom Method

See Also
 





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

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public override void Zoom (
    Point selectionStart,
    Point selectionEnd
)

Visual Basic  Copy Code

Public Overrides 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 Zoom method gives a detailed view of the bars between selectionStart and selectionEnd. Note that those two indexes are applied to all bar series.

 See Also