New to Telerik UI for WPF? Start a free 30-day trial
How to Hide the Horizontal/Vertical Scrollbar of RadCartesianChart Axis
Updated on Sep 15, 2025
Environment
| Product Version | 2019.1 408 |
| Product | RadChartView for WPF |
Description
How to hide the horizontal/vertical scrollbar (the PanZoomBar) of RadCartesianChart axis.
Solution
Define a Style that targets the PanZoomBar control and set it to the PanZoomBarStyle property of the corresponding chart axis.
XAML
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:CategoricalAxis>
<telerik:CategoricalAxis.PanZoomBarStyle>
<Style TargetType="telerik:PanZoomBar">
<Setter Property="Visibility" Value="Collapsed"/>
</Style>
</telerik:CategoricalAxis.PanZoomBarStyle>
</telerik:CategoricalAxis>
</telerik:RadCartesianChart.HorizontalAxis>