ChartControl.AxisWholeRangeChanged Event
In This Article
Occurs when the axis whole range has been changed.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.UI.dll
NuGet Package: DevExpress.Win.Charts
#Declaration
public event EventHandler<AxisRangeChangedEventArgs> AxisWholeRangeChanged
#Event Data
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. |
Max |
Gets the axis maximum value when the axis range (the whole range and visual range) has been changed. |
Max |
Gets the internal float representation of the range maximum value when the axis range (the whole range and visual range) has been changed. |
Min |
Gets the axis minimum value when the axis range (the whole range and visual range) has been changed. |
Min |
Gets the internal float representation of the range minimum value when the axis range (the whole range and visual range) has been changed. |
#Remarks
For more information, refer to Visual Ranges and Whole Ranges .
See Also