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: {
generateLabels: function(chart) {
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',
fillStyle: 'rgba(54, 162, 235, 0.2)',
strokeStyle: 'rgba(54, 162, 235, 1)',
lineWidth: 1,
hidden: false,
index: 1
index: 0
}];
}
}