Class CircleElement
Implements the "circle" element of SVG DOM.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Chart.SvgBase
Assembly: Syncfusion.Chart.Base.dll
Syntax
public class CircleElement : SuperElement, IElement, IStrokeAttributes, IFillAttributes, ITransformAttribute, IStyleAttribute, IFontAttributes, IViewBoxAttribute, IOpacityAttribute, IClipingAttribute
Constructors
CircleElement()
Initializes a new instance of the CircleElement class.
Declaration
public CircleElement()
Properties
CX
Gets or sets the X coorditane of element center.
Declaration
public Length CX { get; set; }
Property Value
Type | Description |
---|---|
Length | The X coorditane of element center. |
CY
Gets or sets the Y coorditane of element center.
Declaration
public Length CY { get; set; }
Property Value
Type | Description |
---|---|
Length | The Y coorditane of element center. |
R
Gets or sets the radius of circle.
Declaration
public Length R { get; set; }
Property Value
Type | Description |
---|---|
Length | The radius of circle. |
Methods
DrawSelf(Graphics)
Draws the element to specified System.Drawing.Graphics.
Declaration
protected override void DrawSelf(Graphics g)
Parameters
Type | Name | Description |
---|---|---|
System.Drawing.Graphics | g | The System.Drawing.Graphics. |