I need to hide labels in line chart drawn using library chart.js. I googled but no luck. Could that be hidden?
Thanks
Solved it with overriding y-axis labels width
Chart.Scale.prototype.buildYLabels = function () { this.yLabelWidth = 0; };