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,
    Point point1,
    Point point2
)

Visual Basic  Copy Code

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

 Parameters

seriesIndex

An integer index of series in Series list.

dataIndex

point1

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

point2

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

 See Also