Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / RadarAxis Class / RadarLabels Property
Example


In This Topic
    RadarLabels Property
    In This Topic
    Gives you access to the radar labels
    Syntax
    'Declaration
     
    <CategoryAttribute("Radar Axis Specific")>
    <DescriptionAttribute("Gives you access to the radar labels")>
    Public Property RadarLabels As TypedArrayList
    'Usage
     
    Dim instance As RadarAxis
    Dim value As TypedArrayList
     
    instance.RadarLabels = value
     
    value = instance.RadarLabels
    [Category("Radar Axis Specific")]
    [Description("Gives you access to the radar labels")]
    public TypedArrayList RadarLabels {get; set;}
    Remarks
    The user specified string will appear at the end of the radar radian lines if the AutoRadarLabels is set to true.
    Example
    The following example assings some user defined string to the radar category labels
    Dim axis As RadarAxis = CType(Chart.Axis(StandardAxis.Radar), RadarAxis)
    axis.RadarLabels.Add("Vitamin A")
    axis.RadarLabels.Add("Vitamin B2")
    axis.RadarLabels.Add("Vitamin C")
    axis.RadarLabels.Add("Vitamin D")
    axis.RadarLabels.Add("Vitamin E")
    RadarAxis axis = (RadarAxis)Chart.Axis(StandardAxis.Radar);
    axis.RadarLabels.Add("Vitamin A");
    axis.RadarLabels.Add("Vitamin B2");
    axis.RadarLabels.Add("Vitamin C");
    axis.RadarLabels.Add("Vitamin D");
    axis.RadarLabels.Add("Vitamin E");
    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