[Chartjs]-Mixed Chart calculating difference between two bars โ€“ ChartJS

1๐Ÿ‘

โœ…

You are best off using a custom inline plugin for this:

var options = {
  type: 'bar',
  data: {
    labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
    datasets: [{
        label: '# of Votes',
        data: [12, 19, 3, 5, 2, 3],
        backgroundColor: 'red'
      },
      {
        label: '# of Points',
        data: [7, 11, 5, 8, 3, 7],
        backgroundColor: 'blue'
      }
    ]
  },
  options: {
    plugins: {
      customValue: {
        offset: 5,
        dash: [5, 15]
      }
    }
  },
  plugins: [{
    id: 'customValue',
    afterDraw: (chart, args, opts) => {
      const {
        ctx,
        data: {
          datasets
        },
        _metasets
      } = chart;

      datasets[1].data.forEach((dp, i) => {
        let increasePercent = dp * 100 / datasets[0].data[i] >= 100 ? Math.round((dp * 100 / datasets[0].data[i] - 100) * 100) / 100 : Math.round((100 - dp * 100 / datasets[0].data[i]) * 100) / 100 * -1;
        let barValue = `${increasePercent}%`;
        const lineHeight = ctx.measureText('M').width;
        const offset = opts.offset || 0;
        const dash = opts.dash || [];

        ctx.textAlign = 'center';

        ctx.fillText(barValue, _metasets[1].data[i].x, (_metasets[1].data[i].y - lineHeight * 1.5), _metasets[1].data[i].width);

        if (_metasets[0].data[i].y >= _metasets[1].data[i].y) {
          ctx.beginPath();
          ctx.setLineDash(dash);

          ctx.moveTo(_metasets[0].data[i].x, _metasets[0].data[i].y);
          ctx.lineTo(_metasets[0].data[i].x, _metasets[1].data[i].y - offset);
          ctx.lineTo(_metasets[1].data[i].x, _metasets[1].data[i].y - offset);
          ctx.stroke();
        } else {
          ctx.beginPath();
          ctx.setLineDash(dash);

          ctx.moveTo(_metasets[0].data[i].x, _metasets[0].data[i].y - offset);
          ctx.lineTo(_metasets[1].data[i].x, _metasets[0].data[i].y - offset);
          ctx.lineTo(_metasets[1].data[i].x, _metasets[1].data[i].y - offset - lineHeight * 2);
          ctx.stroke();
        }
      });
    }
  }]
}

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.4.1/chart.js"></script>
</body>

Leave a comment