JSFiddle - React, Tailwind, and code Playground

by J. Albert Bowden

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="tab-month-graph"></div>

JavaScript

$(function() {
	var chart = new Highcharts.Chart({
			chart: {
            	renderTo: 'tab-month-graph',
				zoomType: 'xy'
			},
			title: {
				text: 'Daily - August 2015'
			},
			xAxis: {
				type: 'datetime',
        		tickInterval: 24 * 3600 * 1000,
				labels: {
					align: 'center',
					text: 'Giorni',
					style: {
						fontSize: '10px',
						fontFamily: 'Verdana, sans-serif'
					}
				},
				dateTimeLabelFormats: {
					day: '%e'
				}
			},
			yAxis: [{ // Primary yAxis
				title: {
					text: 'Produzione giornaliera',
					style: {
						color: Highcharts.getOptions().colors[1]
					}
				}
			},
			{ // Secondary yAxis
				title: {
					text: 'PR giornaliero',
					style: {
						color: Highcharts.getOptions().colors[0]
					}
				},
				min: 0,
				startOnTick: false,
				opposite: true
			}],
			legend: {
				enabled: false
			},
			series: [{
				 name: 'Prod.',
				 type: 'column',
				 data: [[1438466230000, 4603.36],[1438552630000, 4264.92],[1438639030000, 3108.05],[1438725430000, 2047.03],[1438811830000, 2270.39],[1438898230000, 2258.2],[1438984630000, 3971.95],[1439071030000, 3784.45],[1439157430000, 3674.53],[1439243830000, 3131.95],[1439330230000, 1963.13],[1439416630000, 3333.52],[1439503030000, 4161.8],[1439589430000, 4408.59],[1439675830000, 2968.83],[1439762230000, 2808.05],[1439848630000, 4439.77],[1439935020000, 3746.48],[1440021430000, 4980],[1440107830000, 3683.91],[1440194230000, 4480.78],[1440280630000, 4406.48],[1440367030000, 4518.98],[1440453430000, 4492.73],[1440539830000, 3924.14],[1440626230000, 4062.89],[1440712630000, 3225.47],[1440799030000, 3213.75],[1440885430000, 4631.95],[1440971830000, 4471.17],[1441058230000, 4223.91]],
				 color: '#89CE7F',
				 dataLabels: {
						enabled: true,
						rotation: -90,
						color: '#000000',
						align: 'right',
						x: 4,
						y: 10,
						style: {
							fontSize: '11px',
							fontFamily: 'Verdana, sans-serif',
							textShadow: '0 0 3px black'
							}
						}
				},...