Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / PolarAxis Class / AngleLabelsFormat Property
Example


In This Topic
    AngleLabelsFormat Property
    In This Topic
    Controls the format of the angle texts
    Syntax
    'Declaration
     
    <CategoryAttribute("Polar Axis Specific")>
    <DescriptionAttribute("Controls the format of the angle texts")>
    <DefaultValueAttribute("<degree>")>
    Public Property AngleLabelsFormat As String
    'Usage
     
    Dim instance As PolarAxis
    Dim value As String
     
    instance.AngleLabelsFormat = value
     
    value = instance.AngleLabelsFormat
    [Category("Polar Axis Specific")]
    [Description("Controls the format of the angle texts")]
    [DefaultValue("<degree>")]
    public string AngleLabelsFormat {get; set;}
    Remarks
    The angle texts for the radian lines can display both degree and radian values. The format command for degrees is <degree> while for radians is <radian>. By default set to degree.
    Example
    The following code will display the angles in radians
    polarAxis.AngleLabelsFormat = "&lt;radian&gt;"
    polarAxis.AngleLabelsFormat = "&lt;radian&gt;";
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also