JSFiddle - React, Tailwind, and code Playground

by Fusher

HTML

<script type="text/javascript" src="http://highcharts.com/js/testing.js"></script><div id="container" style="height: 300px"></div>

JavaScript

var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container'
    },
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },
    
    yAxis: [{
        min: -1,
        max: 10        
    },{
        min: -10,
        max: 100,
    }],
    
    series: [{
        data: [1, 4, 2, 6, 1, 6, 9, 6, 4, 4, 1, 7]        
    },{
        data: [-1, -4, 29, 66, 14, 66, 99, 65, 45, -4, 1, 79] ,
        yAxis: 1     
    }]
});