Is there a way that i can make a flexdashboard gauge bigger in my shiny app?
I have tried to change the width and height in the UI but that just moves it around on the dashboard. It doesn't make it bigger.
library(shiny)
library(flexdashboard)
fluidRow(column(
width = 12,
gaugeOutput('Scale', width = "800px", height = "400px")
)
)