Hi Zhen,
Thanks for using Syncfusion products.
You can change the format of the date time axis labels using following code snippets.
Xamarin.Forms:
|
<chart:DateTimeAxis>
<chart:DateTimeAxis.LabelStyle>
<chart:ChartAxisLabelStyle LabelFormat="hh:mm:ss"></chart:ChartAxisLabelStyle>
</chart:DateTimeAxis.LabelStyle>
</chart:DateTimeAxis>
|
Xamarin.iOS:
|
SFDateTimeAxis dateTimeAxis = new SFDateTimeAxis();
dateTimeAxis.LabelStyle.LabelFormatter = new NSDateFormatter() {DateFormat="hh:mm:ss"}; |
Xamarin.Android:
|
DateTimeAxis dateTimeAxis = new DateTimeAxis();
dateTimeAxis.LabelStyle.LabelFormat = "hh:mm:ss"; |
Please let us know, if you need further assistance on this.
Regards,
Parthiban S