Back to Devexpress

Pane.AxisYScrollBarOptions Property

wpf-devexpress-dot-xpf-dot-charts-dot-pane-3f1e8630.md

latest1.8 KB
Original Source

Pane.AxisYScrollBarOptions Property

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

Namespace : DevExpress.Xpf.Charts

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

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

Property Value

TypeDescription
ScrollBarOptions

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

|

Remarks

Use this property to modify the visibility, alignment and thickness of the Y-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

Pane Class

Pane Members

DevExpress.Xpf.Charts Namespace