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: 280px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
type: 'column'
},
title: {
text: 'The Tom Crean era: 116-97, and dramatic rise'
},
xAxis: {
categories: ['2008-09', '2009-10', '2011-12', '2012-13', '2013-14', '2014-15']
},
credits: {
enabled: true,
text: 'Source IU Athletics / Graphic By James Benedict'
},
series: [{
name: 'Wins',
data: [6, 10, 12, 27, 29, 17, 15],
color: '#E1D8B7'
}, {
name: 'Losses',
data: [-25, -21, -20, -9, -7, -15, -5],
color: '#7D110C'}
]
});
});