JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>

  <div id="chartContainer" style="height: 300px; width: 100%;">
  </div>

JavaScript

window.onload = function () {
  var chart = new CanvasJS.Chart("chartContainer",
                                 {
    title:{
      text: "Stacked column with 0"        

    },
    data: [
      {        
        type: "stackedColumn",       
        name: "Q1",
        yValueFormatString:"#",
        indexLabelPlacement: "inside",
        indexLabelFontColor: "white",
        indexLabelFormatter: formatIndexLabels,
        dataPoints: [
          {  y: 15, label:"2006"},
          {  y: 20, label:"2007"},
          {  y: 30, label:"2008"},
          {  y: 0, label:"2009"},
          {  y: 50, label:"2010"},
          {  y: 60, label:"2011"},
          {  y: 70, label:"2012"}
        ]
      },
      {        
        type: "stackedColumn",       
        name: "Q2",
        yValueFormatString:"#",
        indexLabelPlacement: "inside",
        indexLabelFontColor: "white",
        indexLabelFormatter: formatIndexLabels,
        dataPoints: [
          {  y: 15, label:"2006"},
          {  y: 20, label:"2007"},
          {  y: 30, label:"2008"},
          {  y: 40, label:"2009"},
          {  y: 0, label:"2010"},
          {  y: 60, label:"2011"},
          {  y: 70, label:"2012"}
        ]
      },
      {        
        type: "stackedColumn",       
        name: "Q3",
        yValueFormatString:"#",
        indexLabelPlacement: "inside",
        indexLabelFontColor: "white",
        indexLabelFormatter: formatIndexLabels,
        dataPoints: [
          {  y: 15, label:"2006"},
          {  y: 20, label:"2007"},
          {  y: 30, label:"2008"},
          {  y: 40, label:"2009"},
          {  y: 50, label:"2010"},
          {  y: 0, label:"2011"},
          {  y: 70, label:"2012"}
        ]
      },
      {        
        type: "stackedColumn",       
        name:"Q4",
        yValueFormatString:"#",
        indexLabelPlacement: "inside",
        indexLabelFontColor: "white",
        indexLabelFormatter: formatIndexLabels,
        dataPoints: [
        ...