Date Format Issue
Posted: Wed Apr 26, 2023 5:44 am
I having date format issues
it should be 00:00:00 07-Apr-2023
it should be 00:00:00 07-Apr-2023
Code: Select all
this.TChart.axes.bottom.visible = true;
this.TChart.axes.bottom.labels.dateFormat = "HH:mm:ss dd-MMM-yy";
this.TChart.axes.bottom.title.text = "\nDateTime";
this.TChart.axes.bottom.grid.visible = true;
this.TChart.axes.bottom.automatic = true;
for (var t = 0; t < _data.xData.length; t++) {
// sample date from data "2023-04-06T21:26:05.72-05:00"
const _date_ = new Date(_data.timeStampData[t]);
this._series0.data.x[t] = _date_ ;
}