Grouped Stacked Bar in JavaScript

Using ApexCharts with JavaScript

This Grouped Stacked Bar example uses ApexCharts.js directly in JavaScript, with no wrapper component.

Install it with npm install apexcharts, then mount the chart with new ApexCharts(element, options).render().

JavaScript installation guide
var options = {
  series: [
    {
      name: 'Q1 Budget',
      group: 'budget',
      color: '#80c7fd',
      data: [44000, 55000, 41000, 67000, 22000],
    },
    {
      name: 'Q1 Actual',
      group: 'actual',
      color: '#008FFB',
      data: [48000, 50000, 40000, 65000, 25000],
    },
    {
      name: 'Q2 Budget',
      group: 'budget',
      color: '#80f1cb',
      data: [13000, 36000, 20000, 8000, 13000],
    },
    {
      name: 'Q2 Actual',
      group: 'actual',
      color: '#00E396',
      data: [20000, 40000, 25000, 10000, 12000],
    },
  ],
  chart: {
    type: 'bar',
    height: 350,
    stacked: true,
  },
  stroke: {
    width: 1,
    colors: ['#fff'],
  },
  dataLabels: {
    formatter: (val) => {
      return val / 1000 + 'K'
    },
  },
  plotOptions: {
    bar: {
      horizontal: true,
    },
  },
  xaxis: {
    categories: [
      'Online advertising',
      'Sales Training',
      'Print advertising',
      'Catalogs',
      'Meetings',
    ],
    labels: {
      formatter: (val) => {
        return val / 1000 + 'K'
      },
    },
  },
  fill: {
    opacity: 1,
  },
  legend: {
    position: 'top',
    clusterGroupedSeriesOrientation: 'horizontal',
    horizontalAlign: 'left',
  },
}

var chart = new ApexCharts(document.querySelector('#chart'), options)
chart.render()