Skip to main content

GraphicsCache.DrawPie(Pen, RectangleF, Single, Single) Method

Draws a pie shape defined by an ellipse specified by a RectangleF structure and two radial lines.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public void DrawPie(
    Pen pen,
    RectangleF rect,
    float startAngle,
    float sweepAngle
)

Parameters

Name Type Description
pen Pen

Pen that determines the color, width, and style of the pie shape.

rect RectangleF

RectangleF structure that represents the bounding rectangle that defines the ellipse from which the pie shape comes.

startAngle Single

Angle measured in degrees clockwise from the x-axis to the first side of the pie shape.

sweepAngle Single

Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape.

See Also