I'm new on dc.js and I have some questions about flexibility of dc.
First, I have looked for answers but haven't yet found any of them.
1) I'm using dc.sunburst chart. I was wondering if it was possible to create Zoomable sunburst as it is actually the case with d3.js. If yes, can you provide a piece of code please..?
2) I'm using crossfilter for interacting several graphs together. However I would like that one of them would not be possible to filter with. I mean that it updates with his dimension/group when filtering on other chart but that filtering other chart clicking on it would be impossible. Any ideas ?
Like: dc.rowChart().on("click", Do not filter)
3) I want to create a dropdown
(using dc.menuSelect
and crossfilter
) on a two-dimension. When I create this chart the dropdown
is like:
- Bâle, A1
- Bâle, A2
- ...
- Bâle, N2
And I would like something more like:
- Bâle
- A1
- A2
- ...
- N2
- Zürich
- A1
- ...
- N2
Thanks for your answer !!
dc.sunburstChart
but maybe it would not be too hard to add. Would you expect the chart also to filter to the clicked slice when the sunburst chart zooms in? – Gordon