Class PolarArc
Represents the polar and radar chart's points data.
Inheritance
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class PolarArc : Object
Remarks
This class contains the properties defining the angles and radii necessary for plotting points in polar and radar charts.
Properties
CurrentXPosition
Gets or sets the current X-Position of the point.
Declaration
public double CurrentXPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the current X-Position of the point. The default value is 0. |
Remarks
This property determines the horizontal position of the data point within the polar or radar chart.
EndAngle
Gets or sets the end angle of the arc segment for the point.
Declaration
public double EndAngle { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the end angle of the arc in degrees. The default value is 0. |
Remarks
The end angle specifies the terminal angle of the arc in polar or radar charts.
InnerRadius
Gets or sets the inner radius of the arc segment for the point.
Declaration
public double InnerRadius { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the inner radius of the arc. The default value is 0. |
Remarks
The inner radius helps define the hollow or inner space within the arc area.
Radius
Gets or sets the radius of the arc segment for the point.
Declaration
public double Radius { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the radius of the arc segment. The default value is 0. |
Remarks
The radius describes the overall reach from the center to the arc's perimeter in a polar or radar chart.
StartAngle
Gets or sets the start angle of the arc segment for the point.
Declaration
public double StartAngle { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the start angle of the arc in degrees. The default value is 0. |
Remarks
The start angle defines the initial angle from which the arc begins in polar or radar charts.