Sunburst : filtered elements should be animated
See original GitHub issueFiltered elements instantaneously disappear without animation.
See the Sunburst example.
Without animation, it’s not immediately clear what is being removed from the chart.
The pie chart calls dc.transition
which is missing for the sunburst chart.
Could it be as simple as that?
Pie chart : https://github.com/dc-js/dc.js/blob/develop/src/pie-chart.js#L124 Sunburst : https://github.com/dc-js/dc.js/blob/develop/src/sunburst-chart.js#L128
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
D3 - Transition Arcs in Sunburst Chart - Stack Overflow
I'm having trouble getting the code to properly transition. On click, all 'petals' (besides the selected one) should disappear and the remain paths...
Read more >Element: <oj-sunburst> - Oracle
Animation should only be enabled for visualizations of small to ... Nodes with any category matching an item in this array will be...
Read more >Sunburst generator in Motion - Apple Support
The Sunburst generator creates “beams” that radiate from a center point. Adjust this generator using the controls in the Generator Inspector:
Read more >Flourish Studios Sunburst Chart Tutorial & Pradeep Kumar G ...
With a sunburst chart, you need a hierarchical relationship (generally two ... You can filter if you desire, but animating the sunburst ......
Read more >Sunburst – amCharts 4 Documentation
Enabling interpolation will mean that elements will transit smoothly into new values rather than updating instantly. Click here for more info about animations....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
There are various bugs in the code that are stopping the transitions from being performed—the main problem is that the existing code talks about
x
,dx
,y
, anddy
, which are from the d3 v3 era, but v4/v5 usesx0
,x1
,y0
, andy1
. I am working on a branch that fixes those errors and adds some new functionality to the sunburst chart.Yes @ialarmedalien fixed it in #1481 for 3.0.7