Initial experiments with plotly and openmct telemetry

This commit is contained in:
Henri Bergius 2017-11-28 19:05:49 +01:00
commit e7b05877c5
6 changed files with 663 additions and 0 deletions

19
screens/polar.html Normal file
View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Polar scatter</title>
<script src="../node_modules/plotly.js/dist/plotly.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<style>
body {
background-color: rgba(0, 0, 0, 0.98);
color: #fff;
}
</style>
</head>
<body>
<div id="chart"></div>
<script src="polar.js"></script>
</body>
</html>