Skip to main content
All docs
V26.1
  • NumericScaleChangedEventArgs(AxisBase, ValueChangeInfo<ScaleMode>, ValueChangeInfo<Double>, ValueChangeInfo<Double>, ValueChangeInfo<Double>, NumericIntervalOptionsChangeInfo) Constructor

    Initializes a new instance of the NumericScaleChangedEventArgs class with the specified values of event arguments.

    Namespace: DevExpress.XtraCharts

    Assembly: DevExpress.XtraCharts.v26.1.dll

    NuGet Package: DevExpress.Charts

    Declaration

    public NumericScaleChangedEventArgs(
        AxisBase axis,
        ValueChangeInfo<ScaleMode> scaleModeChange,
        ValueChangeInfo<double> measureUnitChange,
        ValueChangeInfo<double> gridAlignmentChange,
        ValueChangeInfo<double> gridSpacingChange,
        NumericIntervalOptionsChangeInfo intervalOptionsChangeInfo
    )

    Parameters

    Name Type Description
    axis AxisBase

    The axis whose scale parameter is changed.

    scaleModeChange ValueChangeInfo<ScaleMode>

    The scale mode change info.

    measureUnitChange ValueChangeInfo<Double>

    The measure unit change info.

    gridAlignmentChange ValueChangeInfo<Double>

    The grid alignment change info.

    gridSpacingChange ValueChangeInfo<Double>

    The grid spacing change info.

    intervalOptionsChangeInfo NumericIntervalOptionsChangeInfo

    The ValueChangeInfo<T> of NumericIntervalOptions, that contains information about axis scale interval changes.

    Remarks

    Instances of the NumericScaleChangedEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

    See Also