Horipie example
https://www.npmjs.com/package/horipie
HTML
<script src="https://unpkg.com/[email protected]/horipie.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/horipie.css">
<div id="placeholder">
</div>
JavaScript
let c = new Chart(document.getElementById('placeholder'), 'Analysis');
c.setBars([
['Bad', 123, '#ff4f6b'],
['Poor', 321, '#4d5eea'],
['Fair', 111, '#f58f20'],
['Good', 812, '#2399fd'],
['Excellent', 13, '#5ce18e']
]);