I am using this library to draw charts in my web app. The issue is that I am having decimal points in my y-axis. You can see that in the image below
Is there a way
Another alternative is to use the fixedStepSize option as follows:
options = { scales: { yAxes: [{ ticks: { fixedStepSize: 1 } }], }, };