[]
type DrawEllipseOptions = object;
Provides options for drawing and filling an ellipse.
optional brushBounds?: Bounds;
The optional bounds for the fill brush.
optional brushTransform?: Transform | null;
The transformation applied to the brush.
optional fillBrush?: Brush | null;
A reference to the brush to fill the interior of the ellipse. This property has a priority over the DrawEllipseOptions.fillColor.
optional fillColor?: Color;
The color to fill the interior of the ellipse. This property is ignored if the DrawEllipseOptions.fillBrush is assigned.
optional lineCap?: PenLineCap;
The line cap style specifies the shape to be used at the ends of open subpaths (and dashes, if any) when they are stroked. Overrides the existing value if DrawEllipseOptions.strokePen is specified.
optional lineColor?: Color;
The color of the ellipse outline. Overrides the existing value if DrawEllipseOptions.strokePen is specified.
optional lineJoin?: PenLineJoin;
The line join style specifies the shape to be used at the corners of line segments. Overrides the existing value if DrawEllipseOptions.strokePen is specified.
optional lineStyle?: DashStyle;
The style of dashed pen to draw the ellipse outline. Overrides the existing value if DrawEllipseOptions.strokePen is specified.
optional lineWidth?: number;
The width of the line pen to draw the ellipse outline, in units used for drawing. Overrides the existing value if DrawEllipseOptions.strokePen is specified.
optional strokePen?: Pen | null;
A reference to the pen to draw the ellipse outline.