aspnet-devexpress-dot-xtracharts-dot-web-dot-webchartcontrol-3216f46a.md
Occurs when the axis whole range has been changed.
Namespace : DevExpress.XtraCharts.Web
Assembly : DevExpress.XtraCharts.v25.2.Web.dll
NuGet Package : DevExpress.Web.Visualization
public event EventHandler<AxisRangeChangedEventArgs> AxisWholeRangeChanged
Public Event AxisWholeRangeChanged As EventHandler(Of AxisRangeChangedEventArgs)
The AxisWholeRangeChanged event's data class is AxisRangeChangedEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Axis | Gets the axis for which a range has been changed. |
| Cancel | Gets or sets whether the axis range change should be cancelled. |
| MaxChange | Gets the axis maximum value when the axis range (the whole range and visual range) has been changed. |
| MaxInternalChange | Gets the internal float representation of the range maximum value when the axis range (the whole range and visual range) has been changed. |
| MinChange | Gets the axis minimum value when the axis range (the whole range and visual range) has been changed. |
| MinInternalChange | Gets the internal float representation of the range minimum value when the axis range (the whole range and visual range) has been changed. |
For more information, refer to Axis Range.
See Also