wpf-devexpress-dot-xpf-dot-charts-dot-pane-3f1e8630.md
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
public ScrollBarOptions AxisYScrollBarOptions { get; set; }
Public Property AxisYScrollBarOptions As ScrollBarOptions
| Type | Description |
|---|---|
| ScrollBarOptions |
A ScrollBarOptions object containing the appearance settings of the scroll bar.
|
Use this property to modify the visibility, alignment and thickness of the Y-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