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,
    Point[] points,
    Rect bounds
)

Visual Basic  Copy Code

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

 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 Microsoft.Maui.Graphics.Rect representing the boundaries of current candlestick.

 See Also