# Axes Bounds

## Content



If you want to display a specific portion of the chart in terms of data, you can do so by fixing the axes bounds. With axes bounds, the chart determines the extent of each axis by reckoning the lowest and the highest data values.

**FlexChart** enables you to set axes bounds by setting the **Min** and the **Max** property for the axes.

The following code shows how to set the **Min** and the **Max** property:

**csharp**

```csharp
flexChart.AxisY.Min = 0;
flexChart.AxisY.Max = 8;
```

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