Hi Cosmin,
Greetings from Syncfusion.
We suggest you to use labelFormat property for
datetime axis to display the date time values with hours, minutes, and seconds.
You can customize the axis labels in required timezone using axisLabelRender
event. Please check with the below sample and screenshot.
public axisLabelRender(args: IAxisLabelRenderEventArgs):
void{
if(args.axis.name == "primaryXAxis"){
args.text = new
Date(args.value).toISOString();
}
}
|

Sample : https://stackblitz.com/edit/angular-pzqujr
Kindly revert us if you have any other concerns.
Regards,
Durga Gopalakrishnan.