I was trying to put together a panel with 3 plots vertically with same height and width defined in ui.R. However, the outputs layout varies on the grey part due to different length of Y axis text and legend as well.
This is the code defined in ui.R -
tabPanel("Plot", plotlyOutput("plot24_dose", height = 300, width = 1400)),
tabPanel("Plot", plotlyOutput("plot24_ae", height = 300, width = 1400)),
tabPanel("Plot", plotlyOutput("plot24_lab", height = 300, width = 1400))

Wondering if what else can be done to set a fixed height and width only for the grey part in plots, regardless of other texts?