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.
|
|
|
<!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: 50%; height: 500px;"></div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
const startTime = 1590590148;
|
|
|
|
const data = Array.from(
|
|
|
|
{ length: 20 },
|
|
|
|
(el, idx) => [startTime + idx * 10000, Math.floor(Math.random() * 30)]
|
|
|
|
);
|
|
|
|
let options = {
|
|
|
|
renderLegend: false, usePanning: false,
|
|
|
|
axis: { y: { range: [0, 50] } },
|
|
|
|
zoomEvents: { mouse: {
|
|
|
|
zoom: { isActive: true, orientation: "horizontal" },
|
|
|
|
pan: { isActive: false },
|
|
|
|
}},
|
|
|
|
events: {
|
|
|
|
zoomOut: function(centers, ranges) {
|
|
|
|
console.log('zoomOut', centers, ranges);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var pod = new LinePod(
|
|
|
|
document.getElementById('chart'),
|
|
|
|
[{ datapoints: data }],
|
|
|
|
options
|
|
|
|
);
|
|
|
|
pod.render();
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|