Skip to main content
All docs
V26.1
  • BootstrapRangeSelector.SelectedRangeUpdateMode Property

    Specifies how the selected range should behave when data is updated. Applies only when the BootstrapRangeSelector is bound to a data source.

    Namespace: DevExpress.Web.Bootstrap

    Assembly: DevExpress.Web.Bootstrap.v26.1.dll

    Declaration

    [DefaultValue(VisualRangeUpdateMode.NotSet)]
    public VisualRangeUpdateMode SelectedRangeUpdateMode { get; set; }

    Property Value

    Type Default Description
    VisualRangeUpdateMode NotSet

    A VisualRangeUpdateMode enumeration’s value.

    Available values:

    Name Description
    NotSet

    The update mode is defined by the underlying control.

    Auto

    The applied mode changes depending on the visual range’s position on the axis: at the start or middle - “keep”; at the end - “shift”; if set to view the whole range - “reset” (the visual range remains equal to the whole range).

    Keep

    The visual range does not change.

    Reset

    The visual range becomes equal to the whole range (specified by the BootstrapChartAxisSettings.WholeRangeStart and BootstrapChartAxisSettings.WholeRangeEnd properties).

    Shift

    The visual range moves to the axis end. The range length does not change. The BootstrapChartValueAxis.VisualRangeUpdateMode property treates this value as Auto.

    See Also