Replies: 1 comment
-
Because we are using css grid under the hood, this may be a complex one to implement, but I can think of a workaround that may suit your use case: <Grid cols=2>
<Grid cols=1> <!-- this might not be needed, could be a `<div>` instead? -->
<Chart/>
<Chart/>
</Grid>
<Chart height="100%"/>
</Grid> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
It would be nice to be able to create a grid of for example a Data Table & Chart,
Then have the chart automatically fill up the complete size of the grid, especially if the Data Table is much bigger.
Idea could be like this, where instead LHS could be a very long table
What problem would this solve?
No response
How should it work?
In the component of a chart for example we can specify the maxHeight = 100% for example, to take up the whole spacing, or height= auto to take up the full height.
Beta Was this translation helpful? Give feedback.
All reactions