|
<syncfusion:SfChart.PrimaryAxis>
<syncfusion:CategoryAxis EnableScrollBar="True" EnableTouchMode="True"/>
</syncfusion:SfChart.PrimaryAxis>
|
|
<!-- Change the fill color as per your requirement -->
<ControlTemplate x:Key="HorizontalThumbTemplate" TargetType="Thumb">
<Grid x:Name="Root" Height="10" Background="Transparent">
<Rectangle Height="3" x:Name="Background" Fill="Yellow">
</Rectangle>
</Grid>
</ControlTemplate>
...
<chart:SfChart.PrimaryAxis>
<chart:NumericalAxis EnableScrollBar="True" EnableTouchMode="True"
Template="{StaticResource customAxisTemplate}">
</chart:NumericalAxis>
</chart:SfChart.PrimaryAxis>
|