JSFiddle - React, Tailwind, and code Playground
by rough cheap
HTML
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<canvas id="ffbenchChart" width="100%" height="400"></canvas>
JavaScript
var ctx = document.getElementById('ffbenchChart').getContext('2d');
var chart = new Chart(ctx, {
type : 'horizontalBar',
data : {
labels : ["FF14紅蓮ベンチ", "FF14漆黒ベンチ", "FF15ベンチ"],
datasets : [{
label : 'Ryzen5 3600 + GTX1660Ti'
data : []
},{},{}]
},
options : {}
});