style: Increase font sizes for chart labels and title

This commit is contained in:
Paul Gauthier (aider) 2024-11-21 11:40:02 -08:00
parent 8448eff1eb
commit 3d544136d2

View file

@ -34,7 +34,10 @@ document.addEventListener('DOMContentLoaded', function () {
},
title: {
display: true,
text: 'Aider coder editing benchmark'
text: 'Aider coder editing benchmark',
font: {
size: 16
}
}
},
scales: {
@ -42,7 +45,22 @@ document.addEventListener('DOMContentLoaded', function () {
beginAtZero: true,
title: {
display: true,
text: 'Percent completed correctly'
text: 'Percent completed correctly',
font: {
size: 14
}
},
ticks: {
font: {
size: 12
}
}
},
x: {
ticks: {
font: {
size: 12
}
}
}
}