alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class PolarArc

    Represents the polar and radar chart's points data.

    Inheritance
    object
    PolarArc
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Charts
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class PolarArc
    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
    [JsonPropertyName("cP")]
    public double CurrentXPosition { get; set; }
    Property Value
    Type Description
    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
    [JsonPropertyName("eA")]
    public double EndAngle { get; set; }
    Property Value
    Type Description
    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
    [JsonPropertyName("iR")]
    public double InnerRadius { get; set; }
    Property Value
    Type Description
    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
    [JsonPropertyName("r")]
    public double Radius { get; set; }
    Property Value
    Type Description
    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
    [JsonPropertyName("sA")]
    public double StartAngle { get; set; }
    Property Value
    Type Description
    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.

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved