Charting for WinForms Programmer's Guide
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,
    PointF point
)

Visual Basic  Copy Code

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

 Parameters

seriesIndex

An integer index of series in Series list.

dataIndex

An integer index of data item in specified series.

point

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

 See Also

MindFusion.Charting Namespace