KK
Krishna Kumar
Syncfusion Team
January 13, 2011 10:01 AM UTC
Hi shivinder singh,
Thank you for using Syncfusion Products.
Sorry for the incontinence caused. We are not able to reproduce your mentioned issue. If you need to display the labels in the X axis with every 5th position you can use the Interval property or you can use the DesiredIntervalCount property. The following code snippet shows how to customize the X axis labels.
C#:
Area1.PrimaryAxis.Interval = 5;
Area1.PrimaryAxis.DesiredIntervalsCount = 10;
And
Area1.PrimaryAxis.LabelsMode = ChartAxisLabelsMode.DataSource;
Area1.PrimaryAxis.IntersectAction = ChartLabelIntersectAction.MultipleRows;
The above code is used to display all the labels. If you display all the labels, the labels will overlap and that won’t be clear for avoiding that the MultipleRows property is used.
If the above solution does not resolve your issue, please update us a screen short to explain your problem. So that we can analyze more and update you the possible solution.
Let me know if you have any question.
Thanks,
Krishnakumar