Xceed Chart for WinForms v4.4 Documentation
RadarLabels Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > RadarAxis Class : RadarLabels Property
Gives you access to the radar labels
Syntax
'Declaration
 
<DescriptionAttribute("Gives you access to the radar labels")>
<CategoryAttribute("Radar Axis Specific")>
Public Property RadarLabels As TypedArrayList
'Usage
 
Dim instance As RadarAxis
Dim value As TypedArrayList
 
instance.RadarLabels = value
 
value = instance.RadarLabels
[Description("Gives you access to the radar labels")]
[Category("Radar Axis Specific")]
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

Reference

RadarAxis Class
RadarAxis Members