Trying to create two nested/stacked rings using nvd3. I found this thread but seems like I'd have to sort of re-invent lot of things in order to get the dynamic features that are included in the nvd3 module. I'm trying to do some thing like the PieMix with one outer and inner rings. Looks like nvd3 has a 'sunburst' configuration. How do I use nvd3 (or the sunburst config) to create nested/stacked rings? I need be able to have the dynamic features like dynamic data-loading and etc. that nvd3 provides.
Here's how my data looks like:
var outerRing = [{title: test1, color: '#0ff000', score: 3.2}, {title: test2, color: '#0fffff', score: 6.9}, {title: test3, color: '#00000', score: 7.9}]
var innerRing = [{title: GOOD, score: 5}, {title: BAD, score: 95}]
Thanks!