Skip to main content
All docs
V25.1
  • TimeSpanScaleChangedEventArgs(AxisBase, ValueChangeInfo<ScaleMode>, ValueChangeInfo<TimeSpanMeasureUnit>, ValueChangeInfo<Int32>, ValueChangeInfo<TimeSpanGridAlignment>, ValueChangeInfo<Double>, TimeSpanIntervalOptionsChangeInfo) Constructor

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

    Namespace: DevExpress.XtraCharts

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.Charts

    Declaration

    public TimeSpanScaleChangedEventArgs(
        AxisBase axis,
        ValueChangeInfo<ScaleMode> scaleModeChange,
        ValueChangeInfo<TimeSpanMeasureUnit> measureUnitChange,
        ValueChangeInfo<int> measureUnitMultiplierChange,
        ValueChangeInfo<TimeSpanGridAlignment> gridAlignmentChange,
        ValueChangeInfo<double> gridSpacingChange,
        TimeSpanIntervalOptionsChangeInfo intervalOptionsChangeInfo
    )

    Parameters

    Name Type Description
    axis AxisBase

    The axis whose scale is changed.

    scaleModeChange ValueChangeInfo<ScaleMode>

    The ValueChangeInfo<T> of ScaleMode that contains information about axis scale mode changes.

    measureUnitChange ValueChangeInfo<TimeSpanMeasureUnit>

    The ValueChangeInfo<T> of TimeSpanMeasureUnit that contains information about axis measurement unit changes.

    measureUnitMultiplierChange ValueChangeInfo<Int32>

    The ValueChangeInfo<T> of Int32 that contains information about axis measurement unit multiplier changes.

    gridAlignmentChange ValueChangeInfo<TimeSpanGridAlignment>

    The ValueChangeInfo<T> of DateTimeGridAlignment that contains information about grid alignment unit changes.

    gridSpacingChange ValueChangeInfo<Double>

    The ValueChangeInfo<T> of Double that contains information about grid spacing changes.

    intervalOptionsChangeInfo TimeSpanIntervalOptionsChangeInfo

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

    Remarks

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

    See Also