JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'column'
        },
        yAxis: {
            stackLabels: {
                enabled: true
            }
        },
        tooltip: {
            formatter: function () {
            	return "serie 1 : 5<br>serie 2 : 2<br>serie 3 : 3"
            }
        },
        plotOptions: {
            column: {
                stacking: 'normal'
                }
        },
        series: [{data: [5]}, {data: [2]}, {data: [3]}]
    });
});