Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-jusiak committed Apr 19, 2024
1 parent 278a36f commit 6b4d3a6
Showing 1 changed file with 35 additions and 36 deletions.
71 changes: 35 additions & 36 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,42 +123,41 @@
labels: rows.slice(1).map(row => row.split(',')[0]),
datasets: datasets
},

options: {
responsive: true,
plugins: {
zoom: {
zoom: {
wheel: { enabled: true, },
pinch: { enabled: true, },
mode: 'xy',
},
},
pan: {
enabled: true,
mode: 'xy',
},
legend: {
display: true,
position: 'top',
align: 'end',
}
},
scales: {
x: {
title: {
display: true,
text: 'Number of elements'
},
},
y: {
title: {
display: true,
text: 'Compilation time [seconds]',
},
}
}
}
options: {
responsive: true,
plugins: {
zoom: {
zoom: {
wheel: { enabled: true, },
pinch: { enabled: true, },
mode: 'xy',
},
},
pan: {
enabled: true,
mode: 'xy',
},
legend: {
display: true,
position: 'top',
align: 'end',
}
},
scales: {
x: {
title: {
display: true,
text: 'Number of elements'
},
},
y: {
title: {
display: true,
text: 'Compilation time [seconds]',
},
}
}
}
});
})
}
Expand Down

0 comments on commit 6b4d3a6

Please sign in to comment.