Skip to content

Commit

Permalink
Move smaller values to back
Browse files Browse the repository at this point in the history
  • Loading branch information
hexylena committed Dec 19, 2024
1 parent 347a25b commit 72c4f33
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions _layouts/community.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,6 @@ <h2>Cumulative Data as CSV</h2>
type: 'line',
data: {
datasets: [
{
data: totals.contributors,
label: 'Contributors',
borderColor: getStyleDarker("contributors", true),
backgroundColor: getStyleDarker("contributors", false),
},
{
data: totals.grants,
label: 'Grants',
Expand All @@ -227,6 +221,12 @@ <h2>Cumulative Data as CSV</h2>
borderColor: getStyleDarker("organisations", true),
backgroundColor: getStyleDarker("organisations", false),
},
{
data: totals.contributors,
label: 'Contributors',
borderColor: getStyleDarker("contributors", true),
backgroundColor: getStyleDarker("contributors", false),
},
]
},
options: options
Expand Down

0 comments on commit 72c4f33

Please sign in to comment.