Chart.js – Increase spacing between legend and chart

If you want do increase spacing in all charts you can put this code before creating :

Chart.Legend.prototype.afterFit = function() {
    this.height = this.height + 50;
};

Of course, I don’t try but i think you can change it (or copy the original Chart object before, to keep the original padding).

Bye,

Leave a Comment