Hi people!
How can i put some input$value in the Box Title?
box( title = "Relatorio de Capabilidade - Diametro x Parede - AQA - Grau",
width = "8",
footer = "Aqui pode vir qualquer texto",
plotOutput("histograma")
),
I'm using dashboardpage.
If i have a
numericInput(inputId= "diametro", label= "Diametro do Aco:", value = 0)
how can this value comming from this input, appear on the title?
I tried that way (and other variations):
box( title = "Relatorio de Capabilidade - "input$diametro" x Parede - AQA - Grau"
But did not work