我有多个图表要显示在页面上,并且页面可以滚动。现在,如果我添加另一个图形,则所有其他图形都会变小,但我想使每个图形保持一个大小,而只是让页面增加高度。有什么办法吗?
layout = layout([
overall_month(current_df),
overall_month(current_df),
overall_month(current_df),
overall_month(current_df),
], sizing_mode='stretch_both')
show(layout)