-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Treemap trace #1038
Comments
It would be nice to have support to R too. Now treemaps are restricted to Python and Matlab. |
(Related: #2221) |
There are three possible visual forms that are in principle treemap-like, but whose intent and natural input format differ:
Let's focus strictly on number 1 in this case, assuming that this is a trace-with-its-own-domain like Within that, there are a bunch of dimensions to explore, requirements-wise (these may overlap a lot, naturally):
There's lots of d3 prior art here... https://www.d3indepth.com/layouts/ Other implementations: |
Implementing double-click may not be a good idea noting that on some device e.g. iPad the hover event is triggered by single click and the click event is triggered by double click. |
Is it useful to display node's current/full path on hover? |
Would be useful to have as an option in |
I believe treemaps could deserve to be supported natively as a new
type
instead of having to precompute the rectangles and add them as shapes.One reason is that using shapes prevents us from directly using a
colorscale
on another trace attribute (since the shapes'fillcolor
attribute only accepts a color value).The text was updated successfully, but these errors were encountered: