5 changed files with 99 additions and 15 deletions
@ -0,0 +1,46 @@ |
|||||||
|
<!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) * 1100]); |
||||||
|
let options = { |
||||||
|
renderLegend: false, |
||||||
|
axis: { |
||||||
|
y: { range: [0, 10] }, |
||||||
|
x: { format: 'time' } |
||||||
|
}, |
||||||
|
} |
||||||
|
var pod = new LinePod( |
||||||
|
document.getElementById('chart'), |
||||||
|
[ |
||||||
|
{ datapoints: timeSerieData, color: 'black' }, |
||||||
|
], |
||||||
|
options, |
||||||
|
undefined, |
||||||
|
[ |
||||||
|
{ |
||||||
|
data: segmentsData, |
||||||
|
color:'#FFE545', |
||||||
|
select: true, |
||||||
|
opacity: 0.4, |
||||||
|
opacitySelect: 0.8, |
||||||
|
onSelect: console.log, |
||||||
|
onUnselect: console.log |
||||||
|
} |
||||||
|
] |
||||||
|
); |
||||||
|
pod.render(); |
||||||
|
</script> |
||||||
|
</body> |
||||||
|
</html> |
@ -1,4 +1,11 @@ |
|||||||
|
export type SegmentElement = [number, number, any?]; |
||||||
|
|
||||||
export type SegmentSerie = { |
export type SegmentSerie = { |
||||||
color: string; |
color: string; |
||||||
data: [number, number, any?][] // [from, to, payload?] payload is any data for tooltip
|
data: SegmentElement[] // [from, to, payload?] payload is any data for tooltip,
|
||||||
|
select?: boolean, |
||||||
|
opacity?: number, |
||||||
|
opacitySelect?: number, |
||||||
|
onSelect?: (SegmentElement) => void |
||||||
|
onUnselect?: (SegmentElement) => void |
||||||
} |
} |
Loading…
Reference in new issue