Dear canvasjs support,
I try to set the X axis with an empty graph. But when I put this, nothing is displaying on axis X:
axisX: {
minimum: new Date(2016,8,4),
maximum: new Date(),
},
it’s seems there is a problem with date object because if I put in place number values it works fine:
axisX: {
minimum: 0,
maximum: 24,
},
data: [
{
dataPoints: [],
}
Thank you for the help