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

diameter

startAngle

sweepAngle

path

An IGraphicsPath representing the slice.

 See Also