Is it possible to combine dc.seriesChart()
with the .stack()
mixin? I haven't found any examples and simply don't know how to start...
To be clear, I would like to find a compromise between
- dynamic multi-series as in the series example, where embedded sub-charts are generated as a function of the crossfilter group
and
- area stacking as shown in the demo dc.js area chart, where the variables to be stacked are statically added (no Series used)
Ideally, I would like to implement something like NVD3's stacked area chart with cross-filter support.
Thanks for any pointers and suggestions!
E.