JSFiddle - React, Tailwind, and code Playground
by hfrntt
HTML
<div id="container" style="height: 400px; min-width: 600px"></div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://www.highcharts.com/js/testing-stock.js"></script>
<script type="text/javascript" src="http://www.highcharts.com/samples/data/three-series-1000-points.js"></script>
JavaScript
$(function() {
window.chart = new Highcharts.StockChart({
chart: {
renderTo: 'container'
},
yAxis: [{
title: {
text: 'GOOGL'
}
}],
rangeSelector: {
selected: 1
},
series: [{
name: 'GOOGL',
data: GOOGL
}]
});
$('#container input').datepicker();
});