Description Usage Arguments Examples
Calculate the element properties, by inheriting properties from its parents
1 | calc_element(element, theme, verbose = FALSE)
|
element |
The name of the theme element to calculate |
theme |
A theme object (like |
verbose |
If TRUE, print out which elements this one inherits from |
1 2 3 4 5 6 7 8 9 10 11 12 | t <- theme_grey()
calc_element('text', t)
# Compare the "raw" element definition to the element with calculated inheritance
t$axis.text.x
calc_element('axis.text.x', t, verbose = TRUE)
# This reports that axis.text.x inherits from axis.text,
# which inherits from text. You can view each of them with:
t$axis.text.x
t$axis.text
t$text
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.