You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
575 B
HTML
21 lines
575 B
HTML
6 years ago
|
<html>
|
||
|
<head>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.min.js"></script>
|
||
|
<script src="https://unpkg.com/vue-chartjs/dist/vue-chartjs.min.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1> Data </h1>
|
||
|
<div id="app">
|
||
|
<div style="height: 100px; width: 100%">
|
||
|
<svg viewBox="0 0 100 100" style="height: 100%; width: 100%">
|
||
|
<polygon
|
||
|
v-bind:points="temperatureData">
|
||
|
</polygon>
|
||
|
</svg>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="/data.js" type="text/javascript">
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|