create_fill | R Documentation |
This function creates fill patterns for a cell in a spreadsheet. Fill patterns can be simple solid colors or more complex gradient fills. For certain pattern types, two colors are needed.
create_fill(
gradient_fill = "",
pattern_type = "",
bg_color = NULL,
fg_color = NULL,
...
)
gradient_fill |
Character, specifying complex gradient fills. |
pattern_type |
Character, specifying the fill pattern type. Valid values are "none" (default), "solid", "mediumGray", "darkGray", "lightGray", "darkHorizontal", "darkVertical", "darkDown", "darkUp", "darkGrid", "darkTrellis", "lightHorizontal", "lightVertical", "lightDown", "lightUp", "lightGrid", "lightTrellis", "gray125", "gray0625". |
bg_color |
Character, specifying the background color in hex8 format (alpha, red, green, blue) for pattern fills. |
fg_color |
Character, specifying the foreground color in hex8 format (alpha, red, green, blue) for pattern fills. |
... |
Additional arguments passed to other methods. |
A formatted fill pattern object to be used in a spreadsheet.
wb_add_fill()
Other style creating functions:
create_border()
,
create_cell_style()
,
create_colors_xml()
,
create_dxfs_style()
,
create_font()
,
create_numfmt()
,
create_tablestyle()
# Create a solid fill pattern with foreground color
fill <- create_fill(
pattern_type = "solid",
fg_color = wb_color(hex = "FFFF0000")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.