JSFiddle - React, Tailwind, and code Playground

by Kesav Telaprolu

HTML

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

<div id="container" style="height: 300px"></div>

JavaScript

var chart = new Highcharts.Chart({

    chart: {
        renderTo: 'container',
        type: 'column'
    },
    
    plotOptions: {
        column: {
            stickyTracking: false,
            point: {
                events: {
                    mouseOver: function () {
                        var point = this;

                        setTimeout(function () {
                            point.graphic.attr('fill', 'red');
                        }, 1);
                    },

                    mouseOut: function () {
                        var point = this;
                        
                        setTimeout(function () {
                            point.graphic.attr('fill', 'blue');
                        }, 1);
                    }
                }
            }
        }
    },
    
    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]

});