setRowsColors
From ReporteRs v0.7.7
by David Gohel
applies background colors to rows of a FlexTable
applies background colors to rows of a FlexTable
Usage
setRowsColors(object, i, colors)
Arguments
- object
- a
FlexTable
object - i
- vector (integer index, row.names values or boolean vector) for rows 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 = setRowsColors( MyFTable, i=1:4, colors = "red" )
Community examples
Looks like there are no examples yet.