Hello,
I’m trying to use CanvasJS. At first, everything seemed easy but configuring date/time has been very difficult.
For one thing, I apparently need to append “000” to Unix timestamps? Otherwise, they are wrong. Is that right?
Second, the example I was looking at has the X-axis format under data. However, this doesn’t work:
data: [{
type: "area",
xValueType: "dateTime",
xValueFormatString: "DDD HH:mm:ss",
It only works when I have this:
axisX: {
title: "Date/Time",
valueFormatString: "DDD HH:mm:ss"
I am using the latest “canvasjs.min.js” but xValueFormatString does not seem to work at all, even when I copy one of the examples, directly.