You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wb = wb_workbook() |> wb_add_worksheet("iris") |> wb_add_data("iris", iris, col_names = TRUE, na.strings = "")
# Change first cell to bold
wb = wb_add_font(wb, dims = wb_dims(1, 1), bold = TRUE)
# Now to arial, but bold is removed
wb = wb_add_font(wb, dims = wb_dims(1, 1), name = "Arial")
# Now to size 10, but its not bold or Arial any more
wb = wb_add_font(wb, dims = wb_dims(1,1), size = 10)
# wb$open()
The text was updated successfully, but these errors were encountered:
I am styling my table according to https://janmarvin.github.io/openxlsx2/articles/openxlsx2_style_manual.html#styling-showcase. I run a lot of
wb_add_style
, which seems to be rewriting the current style altogether.Is there a way to append to the current style?
MRE:
The text was updated successfully, but these errors were encountered: