Hi Cho,
You need to turn off automatic labels and provide custom ones - for example:
NOrdinalScaleConfigurator scaleX = nChartControl1.Charts[0].Axis(StandardAxis.PrimaryX).ScaleConfigurator as NOrdinalScaleConfigurator;
scaleX.AutoLabels = false;
scaleX.Labels.Add("One");
scaleX.Labels.Add("Two");
Please take a look at the All Examples \ Axes examples that show how to configure different types of axes as well as how to control labels, ticks etc. Let us know if you meet any problems.
Best Regards,
Nevron Support Team