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"
You would have to construct the title string with something like paste()or glue() but is hard to know for sure if that is the only issue here, because you are not providing context.