As I construct a Dash layout using flexboxes, I've discovered their utility. However, an issue arises when attempting to adjust the size of charts to perfectly fit within a Dash card since I'm uncertain about the default dimensions of the graphs/cards/row elements. This dilemma is depicted below:
https://i.sstatic.net/9Q6vkRQK.png
The two charts on the right should ideally occupy half of the height each, but I lack knowledge regarding the row height of their parent as it's automatically determined by Dash in other sections of the dashboard.
Though I could manually set it [thus affecting all rows], I believe that Dash defaults to responsiveness. Therefore, before making any adjustments, I was hoping to find answers to the following questions:
- What are the default heights in Dash for cards, charts, or rows?
- Is there a method to determine the height using CSS?
In essence, how can I ensure that two stacked graphs match the height of their parent container?
Appreciate your help in advance.