27 lines
771 B
HTML
27 lines
771 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Components test</title>
|
|
<script src="../node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js"></script>
|
|
<script src="../node_modules/plotly.js/dist/plotly.min.js"></script>
|
|
<script src="../dist/infoscreens.js"></script>
|
|
<link rel="stylesheet" href="../theme/c-base.css">
|
|
<style>
|
|
main {
|
|
display: grid;
|
|
grid-template-columns: 50vw 50vw;
|
|
grid-template-rows: 80vh 80vh;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<cbase-heatmap timeseries="crew.online" interpolate></cbase-heatmap>
|
|
<cbase-polar timeseries="bar.open" days="90" percentage></cbase-polar>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|