Nothing
In shinypivottablerUI, you can customize quickly the UI part, and more precisely the borders, using :
app_colors, vector of two colorsapp_linewidth, borders widthYou can also remove module title using show_title in shinypivottabler.
User can modify the table theme using the button update theme in shiny. But you can also set the default theme in shinypivottabler function
the theme object must be a list with this parameters
Colors can be in RGB or in HEX.
# new default theme
theme <- list(
fontName="arial",
fontSize="1em",
headerBackgroundColor = "#430838",
headerColor = "#FFFFFF",
cellBackgroundColor = "#FFFFFF",
cellColor = "#000000",
outlineCellBackgroundColor = "#C0C0C0",
outlineCellColor = "#000000",
totalBackgroundColor = "#e6e6e6",
totalColor = "#000000",
borderColor = "#000000"
)
# ui
ui = shiny::fluidPage(
shinypivottablerUI(id = "id",
app_colors = c("#e6e6e6", "#430838"),
app_linewidth = 3
)
)
# server
server = function(input, output, session) {
shiny::callModule(module = shinypivottabler,
id = "id",
show_title = FALSE,
theme = theme,
data = data)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.