Search
Renderer2D.ProcessPoints Delegate
See Also
 






Defines the signature of delegates called to process data points in pairs.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

protected delegate void Renderer2D.ProcessPoints (
    int seriesIndex,
    int dataIndex,
    PointF point1,
    PointF point2
)

Visual Basic  Copy Code

Protected Delegate Sub Renderer2D.ProcessPoints( _
    seriesIndex As Integer, _
    dataIndex As Integer, _
    point1 As PointF, _
    point2 As PointF _
)

 Parameters

seriesIndex

An integer index of series in Series list.

dataIndex

An integer index of data item in specified series.

point1

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

point2

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

 See Also