I am using Chart.js for displaying bar charts.
http://www.chartjs.org/docs/#bar-chart
I am facing issues when the Labels are Long, the design of the Bar chart gets dis aligned. I have created a fiddle :- Fiddle
var ppHorizontalBar = new Chart(document.getElementById("canvas_HorizontalBar1").getContext("2d")).Bar(data, opt);
I want to Shorten the Label when it is long.
I have tried many things but haven't got the proper results.
How to truncate the Labels? Or what is the best way to handle this for the design to look in order.