I'm creating a slidify presentation that has shiny apps inside.
For example:
## Interactive Chart with Shiny Controls
{r opts.label = 'shiny'}
slidifyUI(
sidebarPanel(
selectInput('sex', 'Choose Sex', c('Male', 'Female')),
selectInput('type', 'Choose Type',
c('multiBarChart', 'multiBarHorizontalChart')
)
),
mainPanel(
tags$div(id = 'googletables', class='shiny-html-output')
)
)
and the app is
require(rCharts)
output$googletables <- renderGvis({gvisTable(Population, options=list(width="100%", height="100%"))})
I want to do two things:
Make the text on the table smaller
Change the design from a side panel to a floating panel, like in this example.
Thanks for the help!