AxisScaleChangedEventArgs.Axis Property
Returns the axis whose scale mode, measure unit, grid alignment or grid spacing has been changed.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v22.2.dll
NuGet Package: DevExpress.Charts
Declaration
Property Value
Type | Description |
---|---|
AxisBase | The axis whose scale parameters have been changed. |
Example
Use the ChartControl.AxisScaleChanged (WebChartControl.AxisScaleChanged) event to obtain the axis‘ automatically calculated grid alignment and measurement unit values, when the scale mode is automatic. Moreover the event arguments contains the axis itself. This event is raised when the scale mode, measure unit, grid alignment or grid spacing of the axis scale has been changed.
Note
A complete sample project is available at https://github.com/DevExpress-Examples/how-to-obtain-values-calculated-for-automatic-axis-date-time-scale-modes-e1529
private void Form1_Load(object sender, EventArgs e) {
chartControl1.AxisScaleChanged += OnChartAxisScaleChanged;
}
private void OnChartAxisScaleChanged(object sender, AxisScaleChangedEventArgs e) {
AxisX axisX = e.Axis as AxisX;
if (axisX == null) return;
// In this event, you can access the properties of the corresponding axis, and
// obtain the automatically calculated value for the axis date-time grid alignment and measure unit.
axisX.Title.Visibility = DefaultBoolean.True;
axisX.Title.Text = String.Format(
"The Axis Grid Alignment Unit is {0} \r\nThe Axis Measure Unit is {1}",
e.Axis.DateTimeScaleOptions.GridAlignment.ToString(),
e.Axis.DateTimeScaleOptions.MeasureUnit.ToString()
);
}
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the Axis property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.