JSFiddle - React, Tailwind, and code Playground

by Kondal Durgam

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

Highcharts.chart('container', {
    chart: {
        type: 'column'
    },
    title: {
        text: 'Offers'
    },
   credits: {
       			 enabled: false
    				},
            exporting: { 
            	enabled: false
             },
    xAxis: {
        categories: [
            'Male',
            'female'
        ]
    },
    yAxis: {
        title: {
            text: ''
        }
    },
    series: [{
        name: 'Plan',
        color: '#1F4788',
        data: [450, 250]

    }, {
        name: ' Actual',
        color: '#4B77BE',
        data: [140, 90]

    }, {
        name: 'Acceptance',
        color: '#317589',
        data: [200,300]

    }, {
        name: 'Rejection',
        color: '#89C4F4',
        data: [300,400]

    }]
});