ComponentOne FlexChart for UWP
FlexChart / Working with FlexChart / FlexChart Elements / FlexChart Axis / Axes Position
In This Topic
    Axes Position
    In This Topic

    FlexChart lets you change the position of the axes by using the Position property.

    The Position property for an axis can be set to the following values in the Position enumeration:

    Property Description
    Position.Auto Positions the item automatically.
    Position.Bottom Positions the item at the bottom.
    Position.Left Positions the item at the left.
    Position.None Hides the item.
    Position.Right Positions the item at the right.
    Position.Top Positions the item at the top.

    Here is the sample code:

    <Chart:C1FlexChart.AxisX>
        <Chart:Axis Title="Fruits" AxisLine="True" Position="Bottom"></Chart:Axis>
    </Chart:C1FlexChart.AxisX>
    <Chart:C1FlexChart.AxisY>
        <Chart:Axis AxisLine="True" Position="Right"></Chart:Axis>
    </Chart:C1FlexChart.AxisY>