I know that there are similar questions already answered on stackoverflow. But, unfortunately, they do not work for me. I am using plotlyOutput() instead of plotOutput(), and following is how I have tried to change the height of a fluidRow():
fluidRow(
plotlyOutput("plot", height = 200)
)
Or,
fluidRow(
plotlyOutput("plot"),
div(style = "height:200px;")
)
However, nothing changes in my Shiny app. Is there any other option to change the height?