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


In This Topic
    RadarLabelsDetachment Property
    In This Topic
    Controls the datachment of category labels
    Syntax
    'Declaration
     
    <CategoryAttribute("Radar Axis Specific")>
    <DescriptionAttribute("Controls the datachment of category labels")>
    <DefaultValueAttribute(5)>
    Public Property RadarLabelsDetachment As Single
    'Usage
     
    Dim instance As RadarAxis
    Dim value As Single
     
    instance.RadarLabelsDetachment = value
     
    value = instance.RadarLabelsDetachment
    [Category("Radar Axis Specific")]
    [Description("Controls the datachment of category labels")]
    [DefaultValue(5)]
    public float RadarLabelsDetachment {get; set;}
    Remarks
    By default set to 0.2f.
    Example
    The following example increases the detachment of the radar category labels
    Dim axis As RadarAxis = CType(Chart.Axis(StandardAxis.Radar), RadarAxis)
    axis.RadarLabelsDetachment = 0.4f
    RadarAxis axis = (RadarAxis)Chart.Axis(StandardAxis.Radar);
    axis.RadarLabelsDetachment = 0.4f;
    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