Hi Torsten,
Most likely you end up with no data labels given the code below. You simply need to assign non visible data label style to the first data point. You should not turn off labeling for all data points if you wish to hide the first one only. The following code snippet shows how to achieve that:
NChart chart = nChartControl1.Charts[0];
NBarSeries bar = new NBarSeries();
chart.Series.Add(bar);
var dataPoint = new NDataPoint(new DateTime(1999, 1, 1).ToOADate(), 0);
bar.AddDataPoint(dataPoint); // this point shall have no label
bar.AddDataPoint(new NDataPoint(new DateTime(2000,1,1).ToOADate(), 1, "2000 / 1"));
bar.AddDataPoint(new NDataPoint(new DateTime(2001, 1, 1).ToOADate(), 2, "2011 / 2"));
bar.AddDataPoint(new NDataPoint(new DateTime(2002, 1, 1).ToOADate(), 5, "2011 / 2"));
bar.AddDataPoint(new NDataPoint(new DateTime(2003, 1, 1).ToOADate(), 4, "2011 / 2"));
NDataLabelStyle dataLabel = new NDataLabelStyle();
dataLabel.Visible = false;
bar.DataLabelStyles[0] = dataLabel; // trying to get rid of label for point at index 0
Hope this helps - let us know if you meet any problems or have any questions.
Best Regards,
Nevron Support Team