Hi Shweta,
You can use a point series in XY scatter mode for this purpose:
NCartesianChart chart = (NCartesianChart)nChartControl1.Charts[0];
NPointSeries point = new NPointSeries();
point.Size = new NLength(0);
chart.Series.Add(point);
point.DataLabelStyle.Visible = true;
point.DataLabelStyle.TextStyle.StringFormatStyle.HorzAlign = Nevron.HorzAlign.Center;
point.DataLabelStyle.TextStyle.StringFormatStyle.VertAlign = Nevron.VertAlign.Center;
point.DataLabelStyle.VertAlign = Nevron.VertAlign.Center;
point.DataLabelStyle.Format = "<label>";
point.UseXValues = true;
point.Values.Add(10);
point.XValues.Add(10);
point.Labels.Add("Some Label");
This will display a centered label at [10,10] - you can also display labels using annotations - check out example All Examples \ Panels \ Annotations for more information... Let us know if you meet any problems.
Best Regards,
Nevron Support Team