Interface IElement
Base interface of each SVG element.
Namespace: Syncfusion.Windows.Forms.Chart.SvgBase
Assembly: Syncfusion.Chart.Base.dll
Syntax
public interface IElement
Properties
Id
Gets or sets the element identifier.
Declaration
string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String | The identifier. |
Name
Gets the name of element.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String | The name. |
OwnerDocument
Gets the owner document.
Declaration
SvgDocument OwnerDocument { get; }
Property Value
Type | Description |
---|---|
SvgDocument | The owner document. |
Text
Gets or sets the inner text of element.
Declaration
string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text. |