You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
11 months ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
||
|
<meta content="utf-8" http-equiv="encoding">
|
||
|
|
||
|
<script src="../dist/index.dev.js" type="text/javascript"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="chart" style="width: 100%; height: 500px;"></div>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
const startTime = 1701790172908;
|
||
|
const timeSerieData = [5, 6, 3, 7, 5, 6, 8, 4, 5, 6, 4, 3, 5, 7, 8]
|
||
|
.map((el, idx) => [startTime + idx * 1000, el]);
|
||
|
const segmentsData = [3, 6, 9].map(el => [startTime + el * 1000, startTime + (el + 1) * 1000]);
|
||
|
let options = {
|
||
|
renderLegend: false,
|
||
|
axis: {
|
||
|
y: { range: [0, 10] },
|
||
|
x: { format: 'time' }
|
||
|
},
|
||
|
}
|
||
|
var pod = new LinePod(
|
||
|
document.getElementById('chart'),
|
||
|
[
|
||
|
{ datapoints: timeSerieData, color: 'black' },
|
||
|
],
|
||
|
options,
|
||
|
[],
|
||
|
[
|
||
|
{ data: segmentsData, color:'#FFE545' }
|
||
|
]
|
||
|
);
|
||
|
pod.render();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|