# Axis Bounds

## Content



The chart usually recalculates and redraws the axes whenever data changes. The bounds of any axis can be fixed so that it is not recalculated when data changes. For the X and Y-axes, a portion of data can be framed by setting axis bounds inside the data bounds.

### To Set the Axis Minimum and Maximum:

Use the Axes [Min](/componentone/api/win/online-chart3d/dotnet-framework-api/C1.Win.C1Chart3D.4.8/C1.Win.C1Chart3D.Chart3DAxis.Min.html) and [Max](/componentone/api/win/online-chart3d/dotnet-framework-api/C1.Win.C1Chart3D.4.8/C1.Win.C1Chart3D.Chart3DAxis.Max.html) properties to fix the minimum or maximum axis extent at a particular value. [AutoMax](/componentone/api/win/online-chart3d/dotnet-framework-api/C1.Win.C1Chart3D.4.8/C1.Win.C1Chart3D.Chart3DAxis.AutoMax.html) and [AutoMin](/componentone/api/win/online-chart3d/dotnet-framework-api/C1.Win.C1Chart3D.4.8/C1.Win.C1Chart3D.Chart3DAxis.AutoMin.html) properties allow the chart to automatically determine axis bounds based on the data bounds. These properties are located on the **Chart3DAxis Collection Editor**. This editor can be accessed by:

1.  Expanding the **ChartArea** node in the Visual Studio Properties window.
2.  Clicking on the **ellipsis** button adjacent to the **Axes** property.

### Z-axis Notes

The Z-axis minimum/maximum cannot be set inside the Z-range of the data. If a fixed extent exists for the Z-axis and a subsequent data change puts the range outside of the axis, the chart sets the Z-axis **AutoMax** and **AutoMin** properties so that its extent is recalculated.

### X- and Y-axis Notes

The X-axis and Y-axis minimum/maximum cannot be set to a location that does not coincide with a line of data. The values are always adjusted upwards to coincide.

## See Also

[Axis Scaling](/componentone/docs/win/online-chart3d/3daxes/axisscaling)