Xceed Toolkit Plus for WPF v5.0 Documentation
Xceed.Wpf.Toolkit Assembly / Xceed.Wpf.Toolkit.Chart Namespace / AxisLabelLayout Enumeration


    AxisLabelLayout Enumeration
    Determines label layout mode for an axis.
    Syntax
    'Declaration
     
    Public Enum AxisLabelLayout 
       Inherits System.Enum
     
    'Usage
     
    Dim instance As AxisLabelLayout
    Members
    MemberDescription
    ShowAllAll labels are shown by staggering the labels on two or more levels if there is not enough space to show them side-by-side. The Level property of the LevelLabel class holds the level of label.
    ShowToFitEvery second, third, fourth label, etc., is hidden when there is not enough space to show the labels side-by-side.
    Remarks

    The Level property of LevelLabel is used to determine the relative position of tick labels when AxisLabelsLayout is set to ShowAll.

    For example, if a non-reversed chart is resized horizontally so that there is not quite enough room to fit the tick labels side-by-side, the labels closest to the x-axis will have a Level of 0, whereas alternating labels will be beneath these labels and have a Level of 1, creating two rows of labels. If the chart's horizontal size is further reduced, tick labels will be positioned so there are 3 rows, etc.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Xceed.Wpf.Toolkit.Chart.AxisLabelLayout

    Requirements

    Target Platforms: Windows 11, Windows 10, 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