Autolayout Grid
#3385
Replies: 1 comment 1 reply
-
From your example I have no idea what you're expecting the result to be but if you just want a grid of axes with no data, you should be using matplotlib directly. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
To my understanding all grid classes derived from
Grid
are based on data. There purpose is not only to organize and layout multiple plots in a visual grid. Their purpose seems to be taking the relationship between subplot's data into account.I need a grid with less features and without being coupled to data. I just need the layout feature without the need of importing something from
matplotlib
.Another variant would be:
grid = AutoGrid(rows=2)
orgrid = AutoGrid(columns=2, rows=2)
. The latter should raise exceptions if more thancolumsn * rows
(4
) axes are added to it. An alternative name would beFlowGrid
.Beta Was this translation helpful? Give feedback.
All reactions