JSFiddle - React, Tailwind, and code Playground

by rogeriolino

HTML

<script src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
<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

$(function () {
    $('#container').highcharts({
        title: false,
        yAxis: {
            title: false,
            tickInterval: 5000,
            labels: {
            	format: '{value}',
              style: {
              	color: "#000000",
              }
            }
        },
        xAxis: {
            labels: {
              style: {
              	color: "#000000",
              }
            },
            categories: ['11/2010', '12/2010', '01/2011', '03/2011', '04/2011', '05/2011', '06/2011', '07/2011', '08/2011', '09/2011', '10/2011', '11/2011', '12/2011', '01/2012', '02/2012', '03/2012', '04/2012', '05/2012', '06/2012', '07/2012', '08/2012', '09/2012', '10/2012', '11/2012', '12/2012', '01/2013', '02/2013', '03/2013', '04/2013', '05/2013', '06/2013', '07/2013', '08/2013', '09/2013', '10/2013', '11/2013', '12/2013', '01/2014', '02/2014', '03/2014', '04/2014', '05/2014', '06/2014', '07/2014', '08/2014', '09/2014', '10/2014', '11/2014', '12/2014', '01/2015', '02/2015', '03/2015', '04/2015', '05/2015', '06/2015', '07/2015', '08/2015', '09/2015', '10/2015', '11/2015', '12/2015', '01/2016', '02/2016', '03/2016', '04/2016', '05/2016', '06/2016']
        },
        series: [{
        		color: '#333399',
            data: [67, 4, 6, 1065, 7372, 11241, 10152, 10096, 12118, 9230, 9096, 8815, 8189, 9491, 8338, 10257, 8823, 11054, 10061, 10746, 11634, 10146, 11397, 9302, 16579, 26614, 21694, 24338, 26430, 25726, 25435, 28528, 31769, 35589, 37586, 32677, 27396, 38138, 39124, 36828, 34427, 37768, 31741, 38012, 35183, 33066, 33626, 33338, 28110, 33996, 24618, 34416, 25730, 27898, 31490, 34652, 29399, 26456, 24988, 27185, 22238, 25321, 21620, 28418, 23466, 23559, 25282]
        }]
    });
});