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.
57 lines
1.7 KiB
57 lines
1.7 KiB
2 years 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: 50%; height: 500px;"></div>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
var pod = new ChartwerkBarPod(
|
||
|
document.getElementById('chart'),
|
||
|
[
|
||
|
{ target: 'serie1', datapoints: [[100, 10, 20, 5], [180, 15, 30, 5], [300, 20, 35, 15]], color: ['red', 'pink', 'blue'] },
|
||
|
{ target: 'serie2', datapoints: [[150, 10, 10], [220, 20, 15], [330, 30, 5]], color: ['green', 'yellow'] },
|
||
|
],
|
||
|
{
|
||
|
usePanning: false,
|
||
|
axis: {
|
||
|
x: { format: 'custom', invert: false, valueFormatter: (value) => { return 'L' + value; }, ticksCount: 6, range: [50, 380] },
|
||
|
y: { format: 'custom', invert: false, valueFormatter: (value) => { return value + '%'; }, ticksCount: 8 }
|
||
|
},
|
||
|
zoomEvents: {
|
||
|
scroll: { zoom: { isActive: false }, pan: { isActive: false } },
|
||
|
},
|
||
|
eventsCallbacks: {
|
||
|
zoomIn: (range) => { console.log('range', range) }
|
||
|
},
|
||
|
renderLegend: false,
|
||
|
// non_discrete type config
|
||
|
type: {
|
||
|
['non-discrete']: {
|
||
|
enable: true,
|
||
|
barWidth: {
|
||
|
estimated: { value: 35, type: 'unit' },
|
||
|
max: 30,
|
||
|
min: 10,
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
);
|
||
|
console.time('render');
|
||
|
pod.render();
|
||
|
console.timeEnd('render');
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
<style>
|
||
|
.overlay {
|
||
|
fill: none;
|
||
|
}
|
||
|
</style>
|