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

PivotGridWebOptionsView.HorizontalScrollBarMode Property

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

Namespace: DevExpress.Web.ASPxPivotGrid

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

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
MVCxPivotGrid
.OptionsView.HorizontalScrollBarMode
PivotGridSettings
.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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the HorizontalScrollBarMode property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also