Charting for WinForms Programmer's Guide
Renderer2D.ProcessRange Delegate
See Also
 






Defines the signature of delegates called to process all points from current data range at once.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

protected delegate void Renderer2D.ProcessRange (
    int seriesIndex,
    List<PointF> points
)

Visual Basic  Copy Code

Protected Delegate Sub Renderer2D.ProcessRange( _
    seriesIndex As Integer, _
    points As List(Of PointF) _
)

 Parameters

seriesIndex

An integer index of series in Series list.

points

A list of PointF values containing the Plot2D coordinates corresponding to data items in currently visible range.

 See Also

MindFusion.Charting Namespace