tableau_extension
ext_options.Rd
Use this function to modify the configuration options available for your
Tableau extension. Pass the resulting value as the options
argument to
tableau_extension()
.
ext_options(
config_width = 600,
config_height = 400,
prompt_for_config = TRUE,
use_theme = TRUE,
...
)
config_width, config_height | Numeric value specifying the initial width and height of the extension's configuration dialog (if any). In pixels. |
---|---|
prompt_for_config | If the extension provides a configuration dialog
(i.e. Use |
use_theme | By default, shinytableau applies a customized version of
Bootstrap 4 CSS to your extension's UI and config UI; the customizations
are intended to complement Tableau's own UI conventions (though we cannot
replicate them exactly due to licensing issues). Pass |
... | Options to pass through to shiny::runApp (e.g. |
A list object, suitable for passing to tableau_extension(options = ...)
.