From 753ea441eaac8030a270863176c6451652e1e96c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 4 May 2024 10:22:54 -0700 Subject: [PATCH] aider: Change the graph to a horizontal bar graph. # Aider chat conversation: USER: make the graph a horizontal bar graph ASSISTANT: ```diff --- docs/leaderboard.md +++ docs/leaderboard.md @@ ... @@ ``` --- docs/leaderboard.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/leaderboard.md b/docs/leaderboard.md index 4fb26775e..075615a48 100644 --- a/docs/leaderboard.md +++ b/docs/leaderboard.md @@ -60,11 +60,11 @@ it will work best with models that score well on the code editing benchmark. {% endfor %} var leaderboardChart = new Chart(ctx, { - type: 'bar', + type: 'horizontalBar', data: leaderboardData, options: { scales: { - yAxes: [{ + xAxes: [{ scaleLabel: { display: true, },