-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Subplot/Grid of charts in a table #3982
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
Comments
Hi @AbdealiJK - please see https://codepen.io/etpinard/pen/PrKpBj A few take-home points:
|
I see, that clarifies it a lot better. I got very confused with the difference in behavior of the xaxis/yaxis and row/column specification - but I understand now that one is for traces with cartesian and the other is for non-cartesian. It would be awesome if this was documented more explicitly somewhere! That way to setup a grid/table view using subplots, someone needs to just set the domain correctly. Edit: Note, that I got quite confused with the difference between FunnelArea and Funnel. Funnel is cartesian based and FunnelArea is not (but that just seems to be an implementation detail?). |
@AbdealiJK you might be interested in commenting on #3507 - where we're planning out potential
Here's some relevant info: plotly.js/src/traces/funnel/index.js Lines 31 to 37 in a6393bc
plotly.js/src/traces/funnelarea/index.js Lines 30 to 35 in a6393bc
|
I was looking at the documentation at https://plot.ly/javascript/subplots/

And wanted to create a table of charts, something like:
Where I have multiple charts which describe an item that I have. And then I want to show each row by going through the items.
I tried implementing that with subplots/layout.grid, and first created some traces:
Here are the traces I defined fro both my rows (just dummy data):
Click to view the trace definitions
Now ....
Doing:
just breaks the view.
Doing:
It seems to work, but shows a 2x2 grid on the left side of the screen (with the latter 2 columns empty)
I don't fully understand the behavior here and what it is doing.
Maybe this is just cause I don't understand what the configs I need to provide exactly are?
You can check out my trials at:
https://codepen.io/AbdealiJK/pen/EBXBzO
The text was updated successfully, but these errors were encountered: