Trying to round the bars on bar chart as found in this post that works as displayed in the jsFiddle provided. This is for version 1.
In the chart that I am using, i
Solution by @jordanwillis doesn't work with chart.js version after 2.8.0.
To make it work just add following code before drawRoundedTopRectangle definition
drawRoundedTopRectangle
Chart.helpers.merge(Chart.defaults.global, { datasets: { roundedBar: { categoryPercentage: 0.8, barPercentage: 0.9 } } });