wb_add_sparklines {openxlsx2} | R Documentation |
Add sparklines to a worksheet
Description
Add sparklines to a worksheet
Usage
wb_add_sparklines(wb, sheet = current_sheet(), sparklines)
Arguments
wb |
A |
sheet |
sheet to add the sparklines to |
sparklines |
sparklines object created with |
See Also
Examples
sl <- create_sparklines("Sheet 1", dims = "A3:K3", sqref = "L3")
wb <- wb_workbook() %>%
wb_add_worksheet() %>%
wb_add_data(x = mtcars) %>%
wb_add_sparklines(sparklines = sl)
[Package openxlsx2 version 1.8 Index]