Hi,
I have an issue with inserting the data marker property into my line series.
I create the line series in a for loop. I able to set all the properties of the line series except the data marker.
Is there any way that I could be able to insert data marker property into it with the current method I'm doing right now.
The code below is a sample code of the segment that used to create the line series.
for (int i = 0; i < columnsField.Count - 1; i++)
{
chart.Series.Add(new ColumnSeries()
{
ItemsSource = ticketHeaders,
XBindingPath = columnsField[0],
YBindingPath = columnsField[i + 1],
Label = header[i],
TooltipEnabled = true,
//DataMarker.ShowLabel = true,
EnableAnimation = true
});
}