feat: Reduce height of pass rate chart to 300px

This commit is contained in:
Paul Gauthier 2024-09-26 11:17:43 -07:00 committed by Paul Gauthier (aider)
parent 0cb8c891d9
commit aa7949467c

View file

@ -45,7 +45,7 @@ o1-preview as Senior and Deepseek as Junior, raising the SOTA from 79.7% up to 8
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-annotation@1.0.2"></script>
{% assign sorted_data = site.data.senior | sort: "pass_rate_2" | reverse %}
<canvas id="passRateChart" width="400" height="400"></canvas>
<canvas id="passRateChart" width="400" height="300"></canvas>
<script>
document.addEventListener("DOMContentLoaded", function() {
var ctx = document.getElementById('passRateChart').getContext('2d');