JSFiddle - React, Tailwind, and code Playground
by Laurie
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
type: 'line'
},
title: {
text: 'Monthly Count of Target Achievement Date Replans'
},
xAxis: {
categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'],
},
yAxis: {
title: {
text: 'Number of Replans',
},
min: 0,
},
legend: {
enabled: false
},
plotOptions: {
line: {
dataLabels: {
enabled: true
},
enableMouseTracking: false
}
},
series: [{
name: 'Re',
data: [0, 1, 3, 4, 1, 0]
}]
});
});