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

BootstrapChartScrollBarSettings.Position Property

Specifies the position of the scroll bar in the chart.

Namespace: DevExpress.Web.Bootstrap

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

Declaration

[DefaultValue(UIElementPosition.Top)]
public UIElementPosition Position { get; set; }

Property Value

Type Default Description
UIElementPosition **Top**

One of the UIElementPosition enumeration values.

Available values:

Name Description
Bottom

An element is positioned at the bottom of the parent element.

Top

An element is positioned at the top of the parent element.

Left

An element is positioned at the left of the parent element.

Right

An element is positioned at the right of the parent element.

NotSet

An element position is defined by the underlying control.

Property Paths

You can access this nested property as listed below:

Object Type Path to Position
BootstrapChart
.SettingsScrollBar.Position

Remarks

Depending on whether the chart is rotated (BootstrapChart.Rotated is set to true) or not, this option accepts different values.

   Rotated    Position
false ‘top’ or ‘bottom’
true ‘left’ or ‘right’
See Also