I have a problem to format the time (x) axis.
I do this to define the chart:
valueFormatString: “##,##,##,##”
I also tried other ways like “DD hh mm ss”
but nothing seems to work.
I deliver this as time information:
return dd + ‘,’ + hh + ‘,’ + mm + ‘,’ + ss;
I also tried with DD:hh:mm:ss
but again, nothing works.
The examples all seem to work for years and months, but not for realtime data.
Is there a solution?