How can I help you?
ShowHide Axis in WPF Sparkline (SfSparkline)
4 May 20263 minutes to read
Following code used to enable the axis and this feature applicable for all the sparkline except WinLoss sparkline, also you can style the axis by AxisStyle property and position the axis by AxisOrigin property.
<Syncfusion:SfLineSparkline
ShowAxis="True"
ItemsSource="{Binding UsersList}"
YBindingPath="NoOfUsers">
</Syncfusion:SfLineSparkline>SfLineSparkline sparkline = new SfLineSparkline()
{
ItemsSource = new SparkViewModel().UsersList,
YBindingPath = "NoOfUsers",
ShowAxis = true
};The following is a snapshot of the axis visibility.

Axis Origin
<Syncfusion:SfLineSparkline
Height="250"
Width="350"
Interior="#4a4a4a"
BorderBrush="DarkGray"
BorderThickness="1"
ShowAxis="True"
AxisOrigin="2"
ItemsSource="{Binding UsersList}"
YBindingPath="NoOfUsers">
</Syncfusion:SfLineSparkline>SfLineSparkline sparkline = new SfLineSparkline()
{
ItemsSource = new SparkViewModel().UsersList,
YBindingPath = "NoOfUsers",
ShowAxis = true,
AxisOrigin = 2,
Interior = new SolidColorBrush(Color.FromRgb(0x4a, 0x4a, 0x4a)),
BorderBrush = new SolidColorBrush(Colors.DarkGray),
BorderThickness = new Thickness(1)
};
Axis LineStyle
<Grid.Resources>
<Style TargetType="Line" x:Key="lineStyle2">
<Setter Property="Stroke" Value="Blue"></Setter>
<Setter Property="StrokeThickness" Value="2"></Setter>
<Setter Property="StrokeDashArray" Value="1,1"></Setter>
</Style>
</Grid.Resources>
<Syncfusion:SfLineSparkline
Height="250"
Width="350"
Interior="#4a4a4a"
BorderBrush="DarkGray"
BorderThickness="1"
ShowAxis="True"
AxisStyle="{StaticResource lineStyle2}"
AxisOrigin="1"
ItemsSource="{Binding UsersList}"
YBindingPath="NoOfUsers">
</Syncfusion:SfLineSparkline>SfLineSparkline sparkline = new SfLineSparkline()
{
ItemsSource = new SparkViewModel().UsersList,
YBindingPath = "NoOfUsers",
ShowAxis = true,
AxisOrigin = 1,
AxisStyle = this.Resources["lineStyle2"] as Style,
Interior = new SolidColorBrush(Color.FromRgb(0x4a, 0x4a, 0x4a)),
BorderBrush = new SolidColorBrush(Colors.DarkGray),
BorderThickness = new Thickness(1)
};