This commit is contained in:
Paul Gauthier 2024-09-26 17:46:52 -07:00
parent 1099cda9e4
commit 5ac71d8b6d

View file

@ -56,7 +56,7 @@ top coding models, as compared to their previous "solo" scores (striped bars).
// Function to determine aspect ratio based on screen width // Function to determine aspect ratio based on screen width
function getAspectRatio() { function getAspectRatio() {
return window.innerWidth < 600 ? 1.5 : 2; return window.innerWidth < 600 ? 1 : 1.5;
} }
var labels = []; var labels = [];
var data = []; var data = [];
@ -158,7 +158,7 @@ top coding models, as compared to their previous "solo" scores (striped bars).
position: 'start', position: 'start',
xAdjust: 10, xAdjust: 10,
font: { font: {
size: 14 size: 12
} }
} }
} }