Hi Henning,
You have to assign instances of the NMarkerStyle object - the following code shows how to do it individually per data point using the default series marker:
NChart chart = nChartControl1.Charts[0];
chart.BoundsMode = BoundsMode.Stretch;
// add some sample data
NLineSeries line = new NLineSeries();
Random rand = new Random();
line.DataLabelStyle.Visible = false;
for (int i = 0; i < 10; i++)
{
line.Values.Add(rand.Next(100));
NMarkerStyle markerStyle = (NMarkerStyle)line.MarkerStyle.Clone();
markerStyle.FillStyle = new NColorFillStyle(Color.Red);
markerStyle.Visible = true;
line.MarkerStyles[i] = markerStyle;
}
chart.Series.Add(line);
nChartControl1.Refresh();
Hope this helps - let me know if you meet any problems.
Best regards,
Bob