Back to Devexpress

Pane.AxisXScrollBarOptions Property

wpf-devexpress-dot-xpf-dot-charts-dot-pane-1ad4e530.md

latest1.9 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public ScrollBarOptions AxisXScrollBarOptions { get; set; }
vb
Public Property AxisXScrollBarOptions As ScrollBarOptions

Property Value

TypeDescription
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.

xaml
<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

AxisYScrollBarOptions

Pane Class

Pane Members

DevExpress.Xpf.Charts Namespace