JSFiddle - React, Tailwind, and code Playground

by gauravsingh

HTML

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

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

JavaScript

$(function () {
        $('#container').highcharts({
    
            chart: {
                type: 'bar'
            },
    
            title: {
                text: 'Total fruit consumtion, grouped by gender'
            },
    
            xAxis: {
                categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
            },
    
            yAxis: {
                allowDecimals: false,
                min: 0,
                title: {
                    text: 'Number of fruits'
                }
            },
    
            tooltip: {
                formatter: function() {
                    return '<b>'+ this.x +'</b><br/>'+
                        this.series.name1 +': '+ this.y +'<br/>'+
                        'Total: '+ this.point.stackTotal;
                }
            },
    
            plotOptions: {
                bar: {
                    stacking: 'normal'
                }
            },
    
            series: [{
                name: 'John and Joe',
                name1:'hhi',
                data: [5, 3, 4, 7, 2],
                stack: 'male'
            }, {
                linkedTo:':previous',
                name: 'Joe',
                text:'hhi',
                data: [3, 4, 4, 2, 5],
                stack: 'male'
            }, {
                name: 'Jane and Janet',
                text:'hhi',
                data: [2, 5, 6, 2, 1],
                stack: 'female'
            }, {
                linkedTo:':previous',
                text:'hhi',
                name: 'Janet',
                data: [3, 0, 4, 4, 3],
                stack: 'female'
            }]
        });
    });