Hi,
I made an array with PHP with epoch time and data :
Array ( [0] => Array ( [x] => 1711793085000 [y] => 193 ) [1] => Array ( [x] => 1711793097000 [y] => 190 ) [2] => Array ( [x] => 1711793110000 [y] => 190 ) [3]etc
With no axisX valueFormatString chart is well displayed but with epoch time format on X axis.
If I format X axis:
axisX: {xValueType: “dateTime”, title: “Date”, valueFormatString: “YYYY-MM-DD HH:mm:ss”},
chart is well displayed but there is no X axis values, just YYYY-MM-DD HH:mm:ss is displayed.
What am I doing wrong ?
Thank you for any help.