Hi,
I create a webchartcontrol and the axis x is a time line (24 h).
I set
AxisBase axis = ((XYDiagram)this.WebChartControl1.Diagram).AxisX;
axis.DateTimeMeasureUnit = DateTimeMeasurementUnit.Minute;
axis.GridSpacing = 60;
axis.DateTimeOptions.Format = DateTimeFormat.Custom;
axis.DateTimeOptions.FormatString = "%H";
the axis line write example:
6 | | | | 7 | | | | 8 | | | | 9 etc.
but the '|' not rappresent the quarter of hour because the number of '|' is 4 and not 3 (6, 6.15, 6.30, 6.45, 7...)
How to implement this axis?
Thanks,
Laura