Charting for WinForms Programmer's Guide
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,
    RectangleF rect,
    float diameter,
    float startAngle,
    float sweepAngle,
    GraphicsPath path
)

Visual Basic  Copy Code

Protected Delegate Sub PieRenderer.ProcessSlice( _
    dataIndex As Integer, _
    rect As RectangleF, _
    diameter As Single, _
    startAngle As Single, _
    sweepAngle As Single, _
    path As GraphicsPath _
)

 Parameters

dataIndex

An integer index of data item in Series.

rect

The bounding rectangle of the slice's circle.

diameter

The diameter of the pie.

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

MindFusion.Charting Namespace