Search
PieRenderer.ProcessSlice Delegate
See Also
 






Defines the signature of delegates called to process pie slices.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

protected delegate void PieRenderer.ProcessSlice (
    int dataIndex,
    Rect rect,
    double diameter,
    double startAngle,
    double sweepAngle,
    IGraphicsPath path
)

Visual Basic  Copy Code

Protected Delegate Sub PieRenderer.ProcessSlice( _
    dataIndex As Integer, _
    rect As Rect, _
    diameter As Double, _
    startAngle As Double, _
    sweepAngle As Double, _
    path As IGraphicsPath _
)

 Parameters

dataIndex

An integer index of data item in Series.

rect

The bounding rectangle of the slice's circle.

diameter

startAngle

The start angle of the slice's sector.

sweepAngle

The sweep angle of the slice's sector.

path

A GraphicsPath representing the slice.

 See Also