| set_cell_properties {huxtable} | R Documentation |
Set multiple cell properties
set_cell_properties(ht, row, col, ...)
ht |
A huxtable. |
row |
A row specification. |
col |
A column specification. |
... |
Named list of property values. |
The modified huxtable object.
ht <- hux(a = 1:3, b = 1:3) ht <- set_cell_properties(ht, 1, 1, italic = TRUE, text_color = 'red') text_color(ht) ht