I am using below code in server.R
to display the text in the main panel. This is working exactly the way it should work.
output$text1 <- renderText({
if(input$ag == 0) return(NULL)
return('First 20 rows for requested AG')
})
Is there any way to change the font and color of the text?
renderText
). – jbaums