Chartjs-Chart.js HiLo chart example

0👍

You can use floating bars for this:

var options = {
  type: 'bar',
  data: {
    labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
    datasets: [{
      label: '# of Votes',
      data: [
        [2, 3],
        [1, 6],
        [4, 8],
        [6, 9],
        [1, 5],
        [0, 3]
      ],
      backgroundColor: 'orange'
    }, ]
  },
  options: {}
}

var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
  <canvas id="chartJSContainer" width="600" height="400"></canvas>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.6.0/chart.js"></script>
</body>

Leave a comment