# Axes Position

## Content



**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:

**csharp**

```csharp
flexChart.AxisX.Position = C1.Chart.Position.Bottom;
flexChart.AxisY.Position = C1.Chart.Position.Right;
```

![](https://cdn.mescius.io/document-site-files/images/8ba28e07-1633-4a6a-9114-13b9f1f04eed/images/imagesext/wpfflexchartaxesposition.png)