Markers in WPF Sparkline (SfSparkline)

18 Nov 20181 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