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; max-width: 800px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
type: 'bar'
},
title: {
text: 'Annually Reported Rape Cases at SU'
},
xAxis: {
categories: ['2013', '2014', '2015']
},
yAxis: {
min: 0,
title: {
text: 'Cases'
}
},
legend: {
reversed: true
},
plotOptions: {
series: {
stacking: 'normal'
}
},
series: [{
name: 'On Campus-Unspecified',
data: [0, 0, 2]
}, {
name: 'On-Campus-Residential Facility',
data: [0, 3, 6]
},]
});
});