Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Pane.AxisXScrollBarOptions Property

Settings that define the appearance of a pane scroll bar displayed for the X-Axis.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v24.2.dll

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public ScrollBarOptions AxisXScrollBarOptions { get; set; }

#Property Value

Type Description
ScrollBarOptions

A ScrollBarOptions object containing the appearance settings of the pane scroll bar.

#Remarks

Use this property to modify the visibility, alignment and thickness of the X-axis scroll bar.

<dxc:XYDiagram2D>
    <dxc:XYDiagram2D.DefaultPane>
        <dxc:Pane>
            <dxc:Pane.AxisXScrollBarOptions>
                <dxc:ScrollBarOptions Visible="False"/>
            </dxc:Pane.AxisXScrollBarOptions>
            <dxc:Pane.AxisYScrollBarOptions>
                <dxc:ScrollBarOptions  Alignment="Far" BarThickness="12" Visible="True">
                </dxc:ScrollBarOptions>
            </dxc:Pane.AxisYScrollBarOptions>
        </dxc:Pane>
    </dxc:XYDiagram2D.DefaultPane>
</dxc:XYDiagram2D>
See Also