JSFiddle - React, Tailwind, and code Playground

by Charissima

HTML

<div id="container" style="height: 400px; min-width: 600px"></div>

<script src="http://code.highcharts.com/stock/highstock.js"></script>

JavaScript

$(function() {
	$('#container').highcharts('StockChart', {	    
	    series: [{
	        name: 'mySeries',
				id : 'dataseries',
				color: 'blue',
				data:
				[	[1402351000000, 0.03], [1402392000000, 0.06], [1402398000000, 0.07], 
					[1402401000000, 0.02],
					{	x: 1402401000000, y: 0.02,
						dataLabels: {
							enabled: true,
							padding: -17,
					    }
					},
					[1402401600000, 0.07], [1402478400000, 0.08],
					[1402910400000, 0.05], [1402910450000, 0.04]
				]	
	    }]
	});
});