Search
StackRenderer.ProcessStackPoint 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 StackRenderer.ProcessStackPoint (
    int seriesIndex,
    int dataIndex,
    PointF stackPoint,
    Nullable<PointF> prevPoint
)

Visual Basic  Copy Code

Protected Delegate Sub StackRenderer.ProcessStackPoint( _
    seriesIndex As Integer, _
    dataIndex As Integer, _
    stackPoint As PointF, _
    prevPoint As Nullable(Of PointF) _
)

 Parameters

seriesIndex

An integer index of series in Series list.

dataIndex

An integer index of data item in specified series.

stackPoint

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

prevPoint

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

 See Also