Skip to main content
A newer version of this page is available. .

AxisScaleChangedEventArgs(AxisBase, ValueChangeInfo<ScaleMode>, ValueChangeInfo<Double>, ValueChangeInfo<AggregateFunction>, ValueChangeInfo<Double>, ValueChangeInfo<Boolean>, RoutedEvent) Constructor

Initializes a new instance of the AxisScaleChangedEventArgs class with the specified settings.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Charts, DevExpress.Wpf.Charts

Declaration

public AxisScaleChangedEventArgs(
    AxisBase axis,
    ValueChangeInfo<ScaleMode> scaleModeChange,
    ValueChangeInfo<double> gridSpacingChange,
    ValueChangeInfo<AggregateFunction> aggregateFunctionChange,
    ValueChangeInfo<double> gridOffsetChange,
    ValueChangeInfo<bool> autoGridChange,
    RoutedEvent eventType
)

Parameters

Name Type Description
axis AxisBase

An AxisBase object that represents the X-axis when the axis scale mode, aggregate function, auto grid, grid offset or grid spacing has been changed.

scaleModeChange ValueChangeInfo<ScaleMode>

An instance of ValueChangeInfo<T><ScaleMode,> that represents the scale mode which has been changed. This value is assigned to the AxisScaleChangedEventArgs.ScaleModeChange property.

gridSpacingChange ValueChangeInfo<Double>

An instance of ValueChangeInfo<T><Double,> that represents the grid spacing which has been changed. This value is assigned to the AxisScaleChangedEventArgs.GridSpacingChange property.

aggregateFunctionChange ValueChangeInfo<AggregateFunction>

An instance of ValueChangeInfo<T><AggregateFunction,> that represents the aggregate function which has been changed. This value is assigned to the AxisScaleChangedEventArgs.AggregateFunctionChange property.

gridOffsetChange ValueChangeInfo<Double>

An instance of ValueChangeInfo<T><Double,> that represents the grid offset which has been changed. This value is assigned to the AxisScaleChangedEventArgs.GridOffsetChange property.

autoGridChange ValueChangeInfo<Boolean>

An instance of ValueChangeInfo<T><Boolean,> that represents the auto grid which has been changed. This value is assigned to the AxisScaleChangedEventArgs.AutoGridChange property.

eventType RoutedEvent

The routed event.

See Also