I have to create stacked bar chart using react-chartjs-2.
options : {
    maintainAspectRatio: false,
    tooltips: {
      mode: 'x-axis'
    },
    scales: {
      yAxes: [{
        ticks: {
          beginAtZero: true
        }
      }],
      xAxes: [{
        stacked: true
      }]
    }
  }
The stacked in Bar doesn't seem to work.
I am using chartjs@2.4.0
 
     
     
    