diff --git a/aider/website/_includes/blame.md b/aider/website/_includes/blame.md index 57296e90d..d2cbcf7aa 100644 --- a/aider/website/_includes/blame.md +++ b/aider/website/_includes/blame.md @@ -68,19 +68,33 @@ document.addEventListener('DOMContentLoaded', function () { }, legend: { display: true, - position: 'bottom', + position: 'top', labels: { generateLabels: function(chart) { return [{ - text: 'Bubble size: Lines of code', + text: chart.data.datasets[0].label, fillStyle: 'rgba(54, 162, 235, 0.2)', strokeStyle: 'rgba(54, 162, 235, 1)', lineWidth: 1, hidden: false, index: 0 + }, { + text: 'Bubble size: Lines of code', + fillStyle: 'rgba(54, 162, 235, 0.2)', + strokeStyle: 'rgba(54, 162, 235, 1)', + lineWidth: 1, + hidden: false, + index: 1 }]; } } + }, + title: { + display: true, + text: 'Aider\'s Contribution to Each Release', + font: { + size: 16 + } } } }