Skip to content

Instantly share code, notes, and snippets.

@Cyrille37
Last active November 6, 2017 13:31
Show Gist options
  • Save Cyrille37/70b5d073ba78d09717b180322d2c9412 to your computer and use it in GitHub Desktop.
Save Cyrille37/70b5d073ba78d09717b180322d2c9412 to your computer and use it in GitHub Desktop.
Plotly
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Plot1</title>
<meta name="description" content="" />
<meta name="author" content="" />
<!--link rel="shortcut icon" href="favicon.ico" /-->
<!--link rel="stylesheet" href="main.css" media="screen" /-->
</head>
<body>
<h1>Plot1</h1>
<div id="plot1" class="" style="height:520px; width:100%;"></div>
<script src="http://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script>
var layout = {
xaxis: {
type: 'date',
rangeselector: true,
autorange: true,
tickangle: -30,
tickmode: 'auto',
nticks: 10
}
};
var data = [
{
type: 'scatter',
x: [1509087123000, 1509142117000],
y: [50,200]
},
{
type: 'scatter',
x: [1509102176000, 1509223734000],
y: [100,3000],
}
];
$(function()
{
Plotly.newPlot( 'plot1', data, layout );
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment