Format a FlexTable object.
# S3 method for FlexTable chprop(object, value, i, j, to = "body", side = "top", ...)
object | the |
---|---|
value | a formatting properties object ( |
i | vector (integer index, row.names values or boolean vector) for rows selection. |
j | vector (integer index, col.names values or boolean vector) for columns selection. |
to | specify on which part of the FlexTable to apply the |
side | used only when value is a |
... | unused |
my_ft <- vanilla.table( head( iris, n = 5 ) ) my_ft <- chprop( my_ft, textBoldItalic(), i = 1, to = "header" ) my_ft <- chprop( my_ft, parCenter(), j = 5 ) my_ft <- chprop( my_ft, borderSolid(color = "red"), i = 5, side = "bottom" )