Syncfusion AI Assistant

How can I help you?

Markers in WPF Sparkline (SfSparkline)

4 May 20261 minute to read

Markers are used to indicate the value point for line and area series, and we can customize with different template.

<Syncfusion:SfLineSparkline 
	ItemsSource="{Binding UsersList}" 
	MarkerVisibility="Visible"
	YBindingPath="NoOfUsers">
</Syncfusion:SfLineSparkline>
SfLineSparkline sparkline = new SfLineSparkline()
{
	ItemsSource = new SparkViewModel().UsersList,
	YBindingPath = "NoOfUsers",
	MarkerVisibility = Visibility.Visible
};

The following is a snapshot of the markers.

Markers_img1