Xceed Toolkit for .NET Maui v2.0 Documentation
Xceed.Maui.Toolkit Assembly / Xceed.Maui.Toolkit Namespace / Chart Class / VerticalAxis Property
Example


In This Topic
    VerticalAxis Property
    In This Topic
    Gets or sets the Chart's vertical Axis.
    Syntax
    'Declaration
     
    
    Public Property VerticalAxis As Axis
    'Usage
     
    
    Dim instance As Chart
    Dim value As Axis
     
    instance.VerticalAxis = value
     
    value = instance.VerticalAxis
    public Axis VerticalAxis {get; set;}
    Remarks

    This property makes it possible to create a customized vertical Axis for the Chart

    Note, however, that the Chart already has a default vertical Axis built-in. 

    Example
    <xctk:Chart.VerticalAxis>
      <xctk:Axis TickCount="10"
                 TickLength="12"
                 Title="My Custom Axis">
        <xctk:Axis.CustomRange>
          <xctk:Range Start="0"
                      End="6"/>
        </xctk:Axis.CustomRange>
      </xctk:Axis>
    </xctk:Chart.VerticalAxis>
    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