Home › Forums › Report Bugs › Axis X with empty dataPoints › Reply To: Axis X with empty dataPoints
Hi,
In JavaScript date-time object format of new Date(year, month[, day[, hour[, minutes[, seconds[, milliseconds]]]]]); 2nd(month) parameter starts from 0 (ie. 0 maps to January). [Source]
new Date(year, month[, day[, hour[, minutes[, seconds[, milliseconds]]]]]);
Similarly in your case 8 will represent to September, which will be more than assigned maximum of new Date(). That’s why you won’t get any labels in axis X.