Search
BarRenderer.ProcessBars Delegate
See Also
 






Defines the signature of delegates called to process bars.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

protected delegate void BarRenderer.ProcessBars (
    int seriesIndex,
    int dataIndex,
    Rect bounds,
    bool oppositeDirection
)

Visual Basic  Copy Code

Protected Delegate Sub BarRenderer.ProcessBars( _
    seriesIndex As Integer, _
    dataIndex As Integer, _
    bounds As Rect, _
    oppositeDirection As Boolean _
)

 Parameters

seriesIndex

An integer index of series in Series list.

dataIndex

An integer index of data item in specified series.

bounds

A Microsoft.Maui.Graphics.Rect representing the boundaries of current bar.

oppositeDirection

The bar is drawn below the axis origin.

 See Also