JSFiddle - React, Tailwind, and code Playground

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 () {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                type: 'line',
                marginRight: 130,
                marginBottom: 25
            },
            title: {
                text: 'Monthly Average Temperature',
                x: -20 //center
            },           
            tooltip: {
                formatter: function() {
                    return 'param1: '+this.point.config1 + '<br/>param2: '+this.point.config2;
                }
            },
            legend: {
                layout: 'vertical',
                align: 'right',
                verticalAlign: 'top',
                x: -10,
                y: 100,
                borderWidth: 0
            },
            series: [{
                name: 'Tokyo',
                data: [
                    {
                        x: 7, 
                        y: 10, 
                        config1: 'test', 
                        config2: 'test2'
                    }, 
                    {
                        x:10, 
                        y:20, 
                        config1: 'test3',
                        config2:'test4'
                    }
                ]
            }]
        });
    });
    
});