setColumnsColors
From ReporteRs v0.7.7
by David Gohel
applies background colors to columns of a FlexTable
applies background colors to columns of a FlexTable
Usage
setColumnsColors(object, j, colors)
Arguments
- object
- a
FlexTable
object - j
- vector (integer index, col.names values or boolean vector) for columns selection.
- colors
- background colors to apply (e.g. "#000000" or "black")
See Also
Examples
#
# Create a FlexTable object with first 10 lines of data.frame mtcars
# add row.names as first column
MyFTable = FlexTable( data = mtcars[1:10, ]
, add.rownames=TRUE
)
MyFTable = setColumnsColors( MyFTable, j=3:4, colors = "red" )
Community examples
Looks like there are no examples yet.