A simple webcomponent to show a 100% stacked bar chart.
npm i @envo/stackbar
https://enricovogt.github.io/stackbar/index.html
<script>
const envoStackbarElement = document.querySelector('#envo-stackbar');
envoStackbarElement.showLegend = true;
envoStackbarElement.values = [
{
value:12,
title:"1",
styles: {
backgroundColor: 'red'
}
},
{
value:12,
title:"2",
styles: {
backgroundColor: 'indianred'
}
},
{
value:4,
title:"3",
styles: {
backgroundColor: 'orange'
}
},
{
value:5,
title:"4",
styles: {
backgroundColor: 'lightgreen'
}
},
{
value:24,
title:"5",
styles: {
backgroundColor: 'green'
}
},
];
</script>
<envo-stackbar id="envo-stackbar"></envo-stackbar>
MIT