Search
Renderer2D.ProcessPoint Delegate
See Also
 






Defines the signature of delegates called to process a data point one element at a time.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

protected delegate void Renderer2D.ProcessPoint (
    int seriesIndex,
    int dataIndex,
    Point point
)

Visual Basic  Copy Code

Protected Delegate Sub Renderer2D.ProcessPoint( _
    seriesIndex As Integer, _
    dataIndex As Integer, _
    point As Point _
)

 Parameters

seriesIndex

An integer index of series in Series list.

dataIndex

point

A Point instance containing the Plot2D coordinates corresponding to current data item.

 See Also