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

NavigationOptions.UseScrollBars Property

Specifies whether a user can use scroll bars to scroll the chart.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v20.1.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Charts, DevExpress.Wpf.Charts

Declaration

public bool UseScrollBars { get; set; }

Property Value

Type Description
Boolean

true to allow using the scroll bars; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to UseScrollBars
XYDiagram2D
.NavigationOptions .UseScrollBars

Remarks

The following code allows a user to use keyboard shortcuts, mouse operations, and touch gestures to zoom and scroll a chart:

<dxc:XYDiagram2D
        EnableAxisXNavigation="True"
        EnableAxisYNavigation="True">
    <dxc:XYDiagram2D.NavigationOptions>
        <dxc:NavigationOptions 
            UseKeyboard="True"
            UseScrollBars="True"
            UseMouse="True"
            UseTouchDevice="True"/>
    </dxc:XYDiagram2D.NavigationOptions>
</dxc:XYDiagram2D>
See Also