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.
36 lines
1.3 KiB
36 lines
1.3 KiB
3 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.js" type="text/javascript"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="chart" style="width: 500px; height: 500px;"></div>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
var pod = new ChartwerkBarPod(
|
||
|
document.getElementById('chart'),
|
||
|
[
|
||
|
{ target: 'test11', datapoints: [[15, 100], [20, 110], [10, 300]], matchedKey: 'm-1', color: 'red' },
|
||
|
{ target: 'test12', datapoints: [[10, 100], [20, 200], [10, 300]], matchedKey: 'm-1', color: 'green' },
|
||
|
{ target: 'test21', datapoints: [[10, 130], [26, 230], [15, 330]], matchedKey: 'm-2', color: 'yellow'},
|
||
|
{ target: 'test22', datapoints: [[10, 130], [27, 230], [10, 330]], matchedKey: 'm-2', color: 'blue' },
|
||
|
],
|
||
|
{
|
||
|
usePanning: false,
|
||
|
axis: {
|
||
|
x: { format: 'custom', invert: false, valueFormatter: (value) => { return 'L' + value; } },
|
||
|
y: { invert: false, range: [0, 30], valueFormatter: (value) => { return value + '%'; } }
|
||
|
},
|
||
|
stacked: true,
|
||
|
matching: true,
|
||
|
maxBarWidth: 20
|
||
|
}
|
||
|
);
|
||
|
pod.render();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|