Hi Clare,
You should populate either the axis labels or the data labels series for each bar - for example:
// 1. Modify category labels of primary x axis
NOrdinalScaleConfigurator ordinalScale = chart.Axis(StandardAxis.PrimaryX).ScaleConfigurator as NOrdinalScaleConfigurator;
if (ordinalScale != null)
{
ordinalScale.AutoLabels = false;
// for each category add a label here
ordinalScale.Labels.Clear();
ordinalScale.Labels.Add("Category 1");
ordinalScale.Labels.Add("Category 2");
ordinalScale.Labels.Add("Category 3");
}
// 2. Modify data labels per data point
NBarSeries barSeries = new NBarSeries();
barSeries.Labels.Clear();
barSeries.Labels[0] = "Some Label For Bar 1";
barSeries.Labels[1] = "Some Label For Bar 2";
// etc.
Hope this helps - let us know if you meet any problems.
Best Regards,
Nevron Support Team