I use Chart.js to display a Radar Chart. My problem is that some labels are very long : the chart can\'t be display or it appears very small.
So, is there a way to b
To wrap the xAxes label, put the following code into optoins. (this will split from white space and wrap into multiple lines)
scales: { xAxes: [ { ticks: { callback: function(label) { if (/\s/.test(label)) { return label.split(" "); }else{ return label; } } } } ] }