Class SvgEllipse
Represents a Blazor component that renders an SVG ellipse element used in chart data point markers and annotations.
Inherited Members
Namespace: Syncfusion.Blazor.DataVizCommon
Assembly: Syncfusion.Blazor.dll
Syntax
public class SvgEllipse : SvgClass, IComponent, IHandleEvent, IHandleAfterRender
Constructors
SvgEllipse()
Declaration
public SvgEllipse()
Properties
AccessibilityText
Gets or sets the accessibility text used as an ARIA label for screen readers.
Declaration
[Parameter]
public string AccessibilityText { get; set; }
Property Value
| Type |
|---|
| string |
Cx
Gets or sets the x-axis coordinate of the center of the ellipse.
Declaration
[Parameter]
public string Cx { get; set; }
Property Value
| Type |
|---|
| string |
Cy
Gets or sets the y-axis coordinate of the center of the ellipse.
Declaration
[Parameter]
public string Cy { get; set; }
Property Value
| Type |
|---|
| string |
DataPoint
Gets or sets a serialized data point value associated with the ellipse element.
Declaration
[Parameter]
public string DataPoint { get; set; }
Property Value
| Type |
|---|
| string |
Fill
Gets or sets the fill color of the ellipse.
Declaration
[Parameter]
public string Fill { get; set; }
Property Value
| Type |
|---|
| string |
Id
Gets or sets the unique identifier for the SVG ellipse element.
Declaration
[Parameter]
public override string Id { get; set; }
Property Value
| Type |
|---|
| string |
Overrides
Opacity
Gets or sets the opacity of the ellipse, ranging from 0 (transparent) to 1 (opaque).
Declaration
[Parameter]
public double Opacity { get; set; }
Property Value
| Type |
|---|
| double |
Rx
Gets or sets the horizontal radius of the ellipse.
Declaration
[Parameter]
public string Rx { get; set; }
Property Value
| Type |
|---|
| string |
Ry
Gets or sets the vertical radius of the ellipse.
Declaration
[Parameter]
public string Ry { get; set; }
Property Value
| Type |
|---|
| string |
Stroke
Gets or sets the stroke color of the ellipse border.
Declaration
[Parameter]
public string Stroke { get; set; }
Property Value
| Type |
|---|
| string |
StrokeDashArray
Gets or sets the stroke dash array pattern applied to the ellipse border.
Declaration
[Parameter]
public string StrokeDashArray { get; set; }
Property Value
| Type |
|---|
| string |
StrokeWidth
Gets or sets the stroke width of the ellipse border.
Declaration
[Parameter]
public double StrokeWidth { get; set; }
Property Value
| Type |
|---|
| double |
Title
Gets or sets the title attribute providing a tooltip or accessible name for the ellipse element.
Declaration
[Parameter]
public string Title { get; set; }
Property Value
| Type |
|---|
| string |
Visibility
Gets or sets the visibility of the ellipse element (e.g., "visible" or "hidden").
Declaration
[Parameter]
public string Visibility { get; set; }
Property Value
| Type |
|---|
| string |
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
| Type | Name | Description |
|---|---|---|
| RenderTreeBuilder | __builder |