mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-09 22:25:00 +00:00
feat: increase font size for chart title, legend, and axis labels
This commit is contained in:
parent
a4d2594552
commit
8da47b9664
1 changed files with 29 additions and 3 deletions
|
@ -71,7 +71,15 @@ document.addEventListener('DOMContentLoaded', function() {
|
|||
beginAtZero: true,
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Pass Rate (%)'
|
||||
text: 'Pass Rate (%)',
|
||||
font: {
|
||||
size: 14
|
||||
}
|
||||
},
|
||||
ticks: {
|
||||
font: {
|
||||
size: 12
|
||||
}
|
||||
}
|
||||
},
|
||||
x: {
|
||||
|
@ -81,14 +89,32 @@ document.addEventListener('DOMContentLoaded', function() {
|
|||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Date'
|
||||
text: 'Date',
|
||||
font: {
|
||||
size: 14
|
||||
}
|
||||
},
|
||||
ticks: {
|
||||
font: {
|
||||
size: 12
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Claude 3.5 Sonnet Performance Over Time'
|
||||
text: 'Claude 3.5 Sonnet Performance Over Time',
|
||||
font: {
|
||||
size: 18
|
||||
}
|
||||
},
|
||||
legend: {
|
||||
labels: {
|
||||
font: {
|
||||
size: 14
|
||||
}
|
||||
}
|
||||
},
|
||||
tooltip: {
|
||||
callbacks: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue