mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
aider: Add y-axis label "Percent correct" to the leaderboard chart.
# Aider chat conversation: USER: add y-axis label "Percent correct" ASSISTANT: ```diff --- docs/leaderboard.md +++ docs/leaderboard.md @@ ... @@ var leaderboardChart = new Chart(ctx, { type: 'bar', data: leaderboardData, options: { scales: { yAxes: [{ + scaleLabel: { + display: true, + labelString: 'Percent correct' + }, ticks: { beginAtZero: true } }] } } }); ```
This commit is contained in:
parent
e8ae216bbd
commit
bc582723e3
1 changed files with 4 additions and 0 deletions
|
@ -65,6 +65,10 @@ it will work best with models that score well on the code editing benchmark.
|
|||
options: {
|
||||
scales: {
|
||||
yAxes: [{
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
labelString: 'Percent correct'
|
||||
},
|
||||
ticks: {
|
||||
beginAtZero: true
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue