Search
CandlestickRenderer.ProcessCandlesticks Delegate
See Also
 






Defines the signature of delegates called to process candlesticks.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

protected delegate void CandlestickRenderer.ProcessCandlesticks (
    int seriesIndex,
    int dataIndex,
    PointF[] points,
    RectangleF bounds
)

Visual Basic  Copy Code

Protected Delegate Sub CandlestickRenderer.ProcessCandlesticks( _
    seriesIndex As Integer, _
    dataIndex As Integer, _
    points() As PointF, _
    bounds As RectangleF _
)

 Parameters

seriesIndex

An integer index of series in Series list.

dataIndex

An integer index of data item in specified series.

points

An array of four points containing wick ends' coordinates.

bounds

A RectangleF representing the boundaries of current candlestick.

 See Also