JSFiddle - React, Tailwind, and code Playground

HTML

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
        $('#container').highcharts({
    
            chart: {
                type: 'bar'
            },
    
            title: {
                text: 'PPAP Status'
            },
    
            xAxis: {
               categories: ['Part1', 'Part2', 'Part3', 'Part4', 'Part5']             
            },
    
            yAxis: {
                allowDecimals: false,
                min: 0,
                type: '',
                title: {
                    text: 'Time'
                },
                stackLabels: {
                    enabled: true,
                    style: {
                        fontWeight: 'bold',
                        color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
                    }
                }
            },
    
            tooltip: {
                formatter: function() {
                    return '<b>'+ this.x +'</b><br/>'+
                        this.series.name +': '+ this.y +'<br/>'+
                        'Total: '+ this.point.stackTotal;
                }
            },
    
            plotOptions: {
                bar: {
                    stacking: 'normal',
                    dataLabels: {
                    enabled: true,
                    color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'black'
                }
                },
                
            },
    
            series: [{
                name: 'Requested',
                data: [10,3,4,5,6],
                stack: 'Planned'
            }, {
                name: 'Requested',
                data: [2,4,5,7,8],
                stack: 'Actual'
            }, {
                name: 'Submitted',
                data: [2,3,2,3,4],
                stack: 'Planned'
            }, {
                name: 'Submitted',
                data: [3,5,2,3,4],
                stack: 'Actual'
            }, {
                name: 'Approved',
                data: [6,3,2,3,4],
               ...