Search
RadarRenderer.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 RadarRenderer.ProcessRange (
    int seriesIndex,
    List<Point> points
)

Visual Basic  Copy Code

Protected Delegate Sub RadarRenderer.ProcessRange( _
    seriesIndex As Integer, _
    points As List(Of Point) _
)

 Parameters

seriesIndex

An integer index of series in Series list.

points

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

 See Also