Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / Axis Class / StaggerLevels Property
Example


In This Topic
    StaggerLevels Property
    In This Topic
    Controls the number of the stagger levels.
    Syntax
    'Declaration
     
    <CategoryAttribute("Texts")>
    <DescriptionAttribute("Controls the number of the stagger levels")>
    <DefaultValueAttribute(2)>
    Public Property StaggerLevels As Integer
    'Usage
     
    Dim instance As Axis
    Dim value As Integer
     
    instance.StaggerLevels = value
     
    value = instance.StaggerLevels
    [Category("Texts")]
    [Description("Controls the number of the stagger levels")]
    [DefaultValue(2)]
    public int StaggerLevels {get; set;}
    Remarks
    Increase this value if you want to position the texts on more levels. By default 2.
    Example
    The following code displays the stagger texts in three levels.
    Chart.Axis(StandardAxis.PrimaryX).StaggerLevels = 3
    Chart.Axis(StandardAxis.PrimaryX).StaggerLevels = 3;
    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