Remove the left legend box

This commit is contained in:
Paul Gauthier (aider) 2024-07-29 12:14:54 -03:00
parent 4c9337f865
commit f793939829

View file

@ -72,19 +72,12 @@ document.addEventListener('DOMContentLoaded', function () {
labels: { labels: {
generateLabels: function(chart) { generateLabels: function(chart) {
return [{ return [{
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', text: 'Bubble size: Lines of code',
fillStyle: 'rgba(54, 162, 235, 0.2)', fillStyle: 'rgba(54, 162, 235, 0.2)',
strokeStyle: 'rgba(54, 162, 235, 1)', strokeStyle: 'rgba(54, 162, 235, 1)',
lineWidth: 1, lineWidth: 1,
hidden: false, hidden: false,
index: 1 index: 0
}]; }];
} }
} }