Stacking by multiple fields.
jansivans opened this issue · 0 comments
jansivans commented
I want to create a stacked bar chart like in this example - https://observablehq.com/@miralemd/picasso-js-stacked-bar-chart.
However, my data looks a bit differently (instead of stacking single Sales field, I need to stack three):
[
[ 'Date', 'Sales1', 'Sales2', 'Sales3' ],
[ 'Jan-2010', 8608, 5216, 3294 ],
[ 'Feb-2010', 3305, 1015, 676 ],
[ 'Mar-2010', 4857, 1395, 4332 ],
]
In screenshot you can see what I need to achieve.
Is it somehow possible?