Hi Tony,
Thanks for
using Syncfusion products.
We suggest
you to set Range to Chart PrimaryXAxis to avoid the overlapping. Please find
the below code snippet to achieve this.
[C#]
DateTime dt = DateTime.Now;
this.chartControl1.PrimaryXAxis.ValueType
= ChartValueType.DateTime;
this.chartControl1.PrimaryXAxis.DateTimeFormat
= "dd/MM/yy";
this.chartControl1.PrimaryXAxis.RangeType
= ChartAxisRangeType.Set;
this.chartControl1.PrimaryXAxis.DateTimeRange
= new ChartDateTimeRange(dt.AddMonths(0),
dt.AddMonths(8),1, ChartDateTimeIntervalType.Months
);
For your
concenience we have prepared a simple sample in window form with screenshot and the same can be
downloaded the sample from the following link.
Range.zip
For more
details regarding set Range to chart axis, please refer our online document
link.
http://help.syncfusion.com/ug/asp.net/chart/Documents/axisrangeandintervals.htm
Please let
us know your concerns.
Thanks,
Bharathiraja
K.