I\'m trying to make a horizontal bar chart with an integer scale. As suggested in this question, I\'ve tried to set scaleOverride, scaleSteps etc,
scaleOverride
scaleSteps
The linked question is for Chart.js version 1.x. For the new version you need to use the ticks option. See http://www.chartjs.org/docs/#scales
ticks
... xAxes: [{ ticks: { min: 0, stepSize: 1, max: 4 }, ...
Fiddle - https://jsfiddle.net/jkufz1b9/