Skip to main content

PivotGridWebOptionsView.HorizontalScrollBarMode Property

Gets or sets a value specifying the horizontal scroll bar’s display mode.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(ScrollBarMode.Hidden)]
public ScrollBarMode HorizontalScrollBarMode { get; set; }

Property Value

Type Default Description
ScrollBarMode Hidden

One of the ScrollBarMode enumeration values.

Available values:

Name Description
Hidden

The scrollbar is hidden.

Visible

The scrollbar is visible.

Auto

The scrollbar is automatically shown when the size of the control content exceeds the size of the control itself.

Property Paths

You can access this nested property as listed below:

Object Type Path to HorizontalScrollBarMode
ASPxPivotGrid
.OptionsView .HorizontalScrollBarMode

Remarks

Important

To use the horizontal scroll bar, set the pivot grid width using the ASPxPivotGrid.Width property.

Use the HorizontalScrollBarMode property to control the visibility of the horizontal scroll bar in the control. To customize the horizontal scrolling mode, use the PivotGridWebOptionsView.HorizontalScrollingMode property.

The vertical scroll bar display mode can be specified using the PivotGridWebOptionsView.VerticalScrollBarMode property.

See Also