JSFiddle - React, Tailwind, and code Playground

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

$(function () {
    $('#container').highcharts({
        title: {
            text: 'Firearms Recovered and Traced in New York City by Borough',
            x: -20 //center
        },
        subtitle: {
            text: 'Source: Bureau of Alcohol, Tobacco, Firearms and Explosives',
            x: -20
        },
        xAxis: {
            categories: ['2006', '2007',
                '2008', '2009', '2010', '2011', '2012', '2013']
        },
        yAxis: {
            title: {
                text: 'Number of Guns Recovered and Traced'
            },
            plotLines: [{
                value: 0,
                width: 1,
                color: '#808080'
            }]
        },
        tooltip: {
            valueSuffix: ' guns'
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'middle',
            borderWidth: 0
        },
        series: [{
            name: 'Brooklyn',
            data: [2558, 2156, 1776, 1861, 1614, 1493, 1378, 1395]
        }, {
            name: 'Queens',
            data: [1599, 1060, 910, 1022, 972, 731, 730, 767]
        }, {
            name: 'The Bronx',
            data: [1590, 1497, 1325, 1191, 836, 1002, 959, 727]
        }, {
            name: 'Manhattan',
            data: [1017, 932, 889, 784, 855, 557, 421, 556]
             }, {
            name: 'Staten Island',
            data: [295, 268, 229, 277, 108, 197, 156, 212]
        }]
    });
});