In my use case I specifically capture items over the last ten days. If nothing has happened in those ten days the graph will look like this:

As you can see in the bottom left corner it displays NaN when it should display 0.
Here is my data from the server.
labels: [],
datasets: [{
data: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
}]
Edit:
Also is there any choice for whole numbers only down the Y axis?
In my use case I specifically capture items over the last ten days. If nothing has happened in those ten days the graph will look like this:
As you can see in the bottom left corner it displays
NaNwhen it should display0.Here is my data from the server.
Edit:
Also is there any choice for whole numbers only down the Y axis?