<!-- Default -->
<script type="module" src="https://cdn.jsdelivr.net/npm/@ppci/stacked-column-chart/builds/index.min.js" />
<!-- Legacy -->
<script type="module" src="https://cdn.jsdelivr.net/npm/@ppci/stacked-column-chart/builds/legacy.min.js" />
<!-- Component -->
<stacked-column-chart
.data=${Array}
.series=${Array}
></stacked-column-chart>
Property |
Type |
Description |
Possible Values |
*data* |
Array |
Chart data list |
```html
[
{
name: '1',
values: {
social: 100,
local: 100,
},
},
{
name: '2',
values: {
social: 200,
local: 50,
},
},
]
```
|
*series* |
Array |
Serie settings |
```html
[
{
name: 'social',
label: 'Social',
color: '#ffffff',
},
{
name: 'local',
label: 'Local',
color: '#ffffff',
},
]
```
|
legendReverse |
Bool |
Reverse the order of the legend labels |
```
false | true
```
|