JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdn.plot.ly/plotly-1.23.0.min.js"></script>
<div id="tester" style="width:600px;height:250px;"></div>
JavaScript
TESTER = document.getElementById('tester');
Plotly.plot( TESTER, [{
x: [
1486549278145.0, 1486549278145.2, 1486549278145.4, 1486549278145.6, 1486549278145.8, 1486549278146.0],
y: [1, 5, 2, 4, 3, 0] }],
{
xaxis: {type: "date"}
} );