0

I am building a dashboard that needs a drill-down pie chart. Does DC.js support drilling down natively? I have implemented drill down in Highcharts quite easily in the past, but we need support for cross filtering and dimensions, so I would like to be able to use DC.js.

Thanks.

morganfree
  • 12,254
  • 1
  • 14
  • 21
Sriram
  • 11
  • 1
  • nope, i think you'd implement this either by changing the data when a category is clicked, or you could use a [sunburst chart](https://github.com/dc-js/dc.js/pull/907), which has similar functionality but is not yet a part of the dc.js core. – Gordon Jun 09 '17 at 21:02

1 Answers1

0

No, it does not. You really should be looking to use crossfilter.js and dc.js together. You will find this a lot quicker than implementing drill down in another charting library if you have more than just the one chart. If you’ve just the one chart, than it would make sense to use one of the many javascript charting libraries. I recommend AmCharts as it is easy to write custom listeners with their api.

Ryan
  • 427
  • 2
  • 15