huxtable (version 4.5.0)

set_default_properties: Default huxtable properties

Description

Defaults are used for new huxtables, and also when a property is set to NA.

Usage

set_default_properties(...)

get_default_properties(names = NULL)

Arguments

...

Properties specified by name, or a single named list.

names

Vector of property names. If NULL, all properties are returned.

Value

For set_default_properties, a list of the previous property values, invisibly.

For get_default_properties, a list of the current defaults.

Details

Note that autoformat = TRUE in huxtable() overrides some defaults.

See Also

Options for autoformat in huxtable-options.

Examples

Run this code
# NOT RUN {
old <- set_default_properties(left_border = 1)
hux(a = 1:2, b = 1:2)
set_default_properties(old)
get_default_properties("bold")
# }

Run the code above in your browser using DataCamp Workspace