tbl$setStyling()
pt$mapStyling()
This ‘Quick Start’ describes one easy method of styling table cells. A fuller explanation is given in the other sections of this vignette.
Cells in a table are styled using CSS. The quickest way to apply styles to individual cells in a table is using:
tbl$setStyling(rFrom, cFrom, rTo, cTo, rowNumbers, columnNumbers, cells, cellType, visible, baseStyleName, style, declarations)
To apply styles to a single cell, e.g. at row 1, column 2:
tbl$setStyling(1, 2, declarations=list("font-weight"="bold", "text-align"="center")
To apply styles to a range of cells, e.g. rows 2 to 3 and columns 1 to 5:
tbl$setStyling(2, 1, 3, 5, declarations=list("font-weight"="bold", "text-align"="center")
or equivalently: tbl$setStyling(rowNumbers=2:3, columnNumbers=1:5, declarations=list("font-weight"="bold", "text-align"="center")
The above sets CSS style attributes on the individual cells. This is quick and easy, though very verbose. Named styles are more efficient for large tables (hundreds/thousands of cells) and are described in the following sections.
basictabler
can render tables to a few different formats. The focus of this vignette is styling when rendering to HTML.
When rendered to HTML, the appearance of basictabler
tables can be changed using styles and themes:
The basictabler
package is supplied with some basic themes. Additional themes can be defined.
In addition, for each cell in the table, a set of style overrides can be set. These are style declarations that apply to individual cells.
A style is a collection of name-value pairs. The name-value pairs used to specify styles are simply Cascading Style Sheet properties and values. A full introduction and reference for CSS can be found on the w3schools website.
An example of defining a basictabler
style is:
$addStyle(styleName="ColumnHeader", list(
tableStyles"font-family"="arial",
"font-size"="0.75em",
padding="2px",
border="1px solid blue",
"vertical-align"="middle",
"text-align"="center",
"font-weight"="bold",
color="blue",
"background-color"="#FFFFFF",
"xl-wrap-text"="wrap"
))
When viewing tables in an IDE such as R Studio, then typically only one table is viewed at a time.
If multiple tables are being output together (e.g. into a single HTML page) then specifying a styleNamePrefix
in the tbl$renderTable()
call is needed. The CSS declarations generated by the basictabler
package for each table will then not overlap with each other. This can be seen in all of the examples in this vignette.
The basictabler
package also supports outputting to Excel files. The Excel output can use CSS styling and/or Excel specific styling. The Excel specific styles are defined alongside the CSS styles and start with “xl-”, e.g. see the example above. The Excel specific styles are ignored by the HTML output. For more details about the Excel export, see the Excel Export vignette.
The basictabler
package includes three basic themes:
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices
# construct the table
library(basictabler)
<- BasicTable$new()
tbl $addData(data.frame(saleIds, items, quantities, prices),
tblfirstColumnAsRowHeaders=TRUE,
explicitColumnHeaders=c("Sale ID", "Item", "Quantity", "Price"),
columnFormats=list(NULL, NULL, NULL, "%.2f"))
# theme the table and render
$theme <- "default" # this theme is already the default, so this line isn't really needed
tbl$renderTable(styleNamePrefix="t0") tbl
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices
# construct the table
library(basictabler)
<- BasicTable$new()
tbl $addData(data.frame(saleIds, items, quantities, prices),
tblfirstColumnAsRowHeaders=TRUE,
explicitColumnHeaders=c("Sale ID", "Item", "Quantity", "Price"),
columnFormats=list(NULL, NULL, NULL, "%.2f"))
# theme the table and render
$theme <- "compact"
tbl$renderTable(styleNamePrefix="t1") tbl
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices
# construct the table
library(basictabler)
<- BasicTable$new()
tbl $addData(data.frame(saleIds, items, quantities, prices),
tblfirstColumnAsRowHeaders=TRUE,
explicitColumnHeaders=c("Sale ID", "Item", "Quantity", "Price"),
columnFormats=list(NULL, NULL, NULL, "%.2f"))
# theme the table and render
$theme <- "largeplain"
tbl$renderTable(styleNamePrefix="t2") tbl
Simple themes can be defined using a list. Several examples are shown below.
# define the font and colours
<- list(
simpleBlueTheme fontName="Verdana, Arial",
fontSize="0.75em",
headerBackgroundColor = "rgb(68, 114, 196)",
headerColor = "rgb(255, 255, 255)",
cellBackgroundColor = "rgb(255, 255, 255)",
cellColor = "rgb(0, 0, 0)",
totalBackgroundColor = "rgb(186, 202, 233)",
totalColor = "rgb(0, 0, 0)",
borderColor = "rgb(48, 84, 150)"
)
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices
# construct the table
library(basictabler)
<- BasicTable$new()
tbl $addData(data.frame(saleIds, items, quantities, prices),
tblfirstColumnAsRowHeaders=TRUE,
explicitColumnHeaders=c("Sale ID", "Item", "Quantity", "Price"),
columnFormats=list(NULL, NULL, NULL, "%.2f"))
# theme the table and render
$theme <- simpleBlueTheme
tbl$renderTable(styleNamePrefix="t3") tbl
# define the colours
<- list(
simpleGrayTheme fontName="Courier New, Courier",
fontSize="0.75em",
headerBackgroundColor = "rgb(128, 128, 128)",
headerColor = "rgb(255, 255, 255)",
cellBackgroundColor = "rgb(255, 255, 255)",
cellColor = "rgb(0, 0, 0)",
totalBackgroundColor = "rgb(192, 192, 192)",
totalColor = "rgb(0, 0, 0)",
borderColor = "rgb(64, 64, 64)"
)
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices
# construct the table
library(basictabler)
<- BasicTable$new()
tbl $addData(data.frame(saleIds, items, quantities, prices),
tblfirstColumnAsRowHeaders=TRUE,
explicitColumnHeaders=c("Sale ID", "Item", "Quantity", "Price"),
columnFormats=list(NULL, NULL, NULL, "%.2f"))
# theme the table and render
$theme <- simpleGrayTheme
tbl$renderTable(styleNamePrefix="t4") tbl
# define the colours
<- list(
simpleGreenTheme fontName="Helvetica, arial",
fontSize="0.75em",
headerBackgroundColor = "rgb(112, 173, 71)",
headerColor = "rgb(255, 255, 255)",
cellBackgroundColor="rgb(255, 255, 255)",
cellColor="rgb(0, 0, 0)",
totalBackgroundColor = "rgb(182, 216, 158)",
totalColor="rgb(0, 0, 0)",
borderColor = "rgb(84, 130, 53)"
)
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices
# construct the table
library(basictabler)
<- BasicTable$new()
tbl $addData(data.frame(saleIds, items, quantities, prices),
tblfirstColumnAsRowHeaders=FALSE,
explicitColumnHeaders=c("Sale ID", "Item", "Quantity", "Price"),
columnFormats=list(NULL, NULL, NULL, "%.2f"))
# theme the table and render
$theme <- simpleGreenTheme
tbl$renderTable(styleNamePrefix="t6") tbl
The following example defines a simple theme and supplies this to the quick table function to specify styling:
# aggregate the sample data to make a small data frame
library(basictabler)
library(dplyr)
<- bhmsummary %>%
tocsummary group_by(TOC) %>%
summarise(OnTimeArrivals=sum(OnTimeArrivals),
OnTimeDepartures=sum(OnTimeDepartures),
TotalTrains=sum(TrainCount)) %>%
ungroup() %>%
mutate(OnTimeArrivalPercent=OnTimeArrivals/TotalTrains*100,
OnTimeDeparturePercent=OnTimeDepartures/TotalTrains*100) %>%
arrange(TOC)
# column formats
=list(NULL, list(big.mark=","),
columnFormatslist(big.mark=","), list(big.mark=","), "%.1f", "%.1f")
# simple theme
<- list(
simpleBlueTheme fontName="Verdana, Arial",
fontSize="0.75em",
headerBackgroundColor = "rgb(68, 114, 196)",
headerColor = "rgb(255, 255, 255)",
cellBackgroundColor = "rgb(255, 255, 255)",
cellColor = "rgb(0, 0, 0)",
totalBackgroundColor = "rgb(186, 202, 233)",
totalColor = "rgb(0, 0, 0)",
borderColor = "rgb(48, 84, 150)"
)
# headings in red text, cells in light gray
<- qtbl(tocsummary, firstColumnAsRowHeaders=TRUE,
tbl explicitColumnHeaders=c("TOC", "On-Time Arrivals",
"On-Time Departures", "Total Trains",
"On-Time Arrival %", "On-Time Departure %"),
columnFormats=columnFormats, theme=simpleBlueTheme)
# render table
$renderTable(styleNamePrefix="t9") tbl
The next example demonstrates specifying more granular style settings when using a quick table function:
# aggregate the sample data to make a small data frame
library(basictabler)
library(dplyr)
<- bhmsummary %>%
tocsummary group_by(TOC) %>%
summarise(OnTimeArrivals=sum(OnTimeArrivals),
OnTimeDepartures=sum(OnTimeDepartures),
TotalTrains=sum(TrainCount)) %>%
ungroup() %>%
mutate(OnTimeArrivalPercent=OnTimeArrivals/TotalTrains*100,
OnTimeDeparturePercent=OnTimeDepartures/TotalTrains*100) %>%
arrange(TOC)
# column formats
=list(NULL, list(big.mark=","),
columnFormatslist(big.mark=","), list(big.mark=","), "%.1f", "%.1f")
# create the table
<- qtbl(tocsummary, firstColumnAsRowHeaders=FALSE,
tbl explicitColumnHeaders=c("TOC", "On-Time Arrivals",
"On-Time Departures", "Total Trains",
"On-Time Arrival %", "On-Time Departure %"),
columnFormats=columnFormats,
tableStyle=list("border-color"="maroon"),
headingStyle=list("color"="cornsilk", "background-color"="maroon",
"font-style"="italic", "border-color"="maroon"),
cellStyle=list("color"="maroon", "background-color"="cornsilk",
"border-color"="maroon"))
# set column alignment of first column
$setStyling(2, 1, 5, 1, declarations=list("text-align"="left"))
tbl
# render table
$renderTable(styleNamePrefix="t10") tbl
The quick table functions specify the same styling/formatting for all headers and all cells. To specify different styling/formatting for specific headings and/or specific rows/columns, use the more verbose syntax for creating the table as shown in the examples below.
The following example defines a new style and uses this for one of the columns in the table, with the other columns using the normal cell style.
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices <- data.frame(saleIds, items, quantities, prices)
df <- c("Sale ID", "Item", "Quantity", "Price")
colNames <- list(NULL, NULL, NULL, "%.2f")
colFormats
# construct the table
library(basictabler)
<- BasicTable$new()
tbl
# define a new style
$addStyle(styleName="AltCell", list(
tbl"font-family"="Arial",
"font-size"="0.8em",
"font-weight"="bold",
padding="2px 2px 2px 8px",
"border-bottom"="1px solid #9C0006",
"text-align"="right",
color="#9C0006",
"background-color"="#FFC7CE"
))<- c("Cell", "Cell", "AltCell", "Cell")
colStyleNames
# populate the table
$addData(df, explicitColumnHeaders=colNames,
tblcolumnFormats=colFormats, baseStyleNames=colStyleNames)
$renderTable(styleNamePrefix="t11") tbl
It is also possible to define a new style for an entire column when creating a table column-by-column. In the example below a new style is created and this is used as the base style for the third column.
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices
# construct the table
library(basictabler)
<- BasicTable$new()
tbl
# define a new style
$addStyle(styleName="AltColumn", list(
tbl"font-family"="Arial",
"font-size"="0.8em",
"font-weight"="bold",
padding="2px 2px 2px 8px",
"border-bottom"="1px solid #9C0006",
"text-align"="right",
color="#9C0006",
"background-color"="#FFC7CE"
))$cells$setCell(1, 1, cellType="root", rawValue="Sale ID")
tbl$cells$setCell(1, 2, cellType="columnHeader", rawValue="Item")
tbl$cells$setCell(1, 3, cellType="columnHeader", rawValue="Quantity")
tbl$cells$setCell(1, 4, cellType="columnHeader", rawValue="Price")
tbl$cells$setColumn(1, cellTypes="rowHeader", rawValues=saleIds)
tbl$cells$setColumn(2, cellTypes="cell", rawValues=items)
tbl$cells$setColumn(3, cellTypes="cell", rawValues=quantities, baseStyleName="AltColumn")
tbl$cells$setColumn(4, cellTypes="cell", rawValues=prices,
tblformats=list("%.2f"))
$renderTable(styleNamePrefix="t13") tbl
Similarly, it is possible to define a new style for an entire row when creating a table row-by-row. In the example below a new style is created and this is used as the base style for the……
# cell types for the cells in each row
<- c("rowHeader", "cell", "cell", "cell")
cellTypes
# formats for the values in each row
# (only the value in the fourth column needs formatting)
<- list(NULL, NULL, NULL, "%.2f")
formats
# construct the table
library(basictabler)
<- BasicTable$new()
tbl
# define a new style
$addStyle(styleName="AltRow", list(
tbl"font-family"="Arial",
"font-size"="0.8em",
"font-weight"="bold",
padding="2px 2px 2px 8px",
"border-bottom"="1px solid #9C0006",
"text-align"="right",
color="#9C0006",
"background-color"="#FFC7CE"
))$cells$setCell(1, 1, cellType="root", rawValue="Sale ID")
tbl$cells$setCell(1, 2, cellType="columnHeader", rawValue="Item")
tbl$cells$setCell(1, 3, cellType="columnHeader", rawValue="Quantity")
tbl$cells$setCell(1, 4, cellType="columnHeader", rawValue="Price")
tbl$cells$setRow(2, cellTypes=cellTypes, formats=formats,
tblrawValues=list(5334, "Apple", 5, 0.34452354))
$cells$setRow(3, cellTypes=cellTypes, formats=formats,
tblrawValues=list(5336, "Orange", 8, 0.4732543), baseStyleNames="AltRow")
$cells$setRow(4, cellTypes=cellTypes, formats=formats,
tblrawValues=list(5338, "Banana", 6, 1.3443243))
$renderTable(styleNamePrefix="t14") tbl
When creating tables column-by-column and row-by-row, it is possible to specify a vector for baseStyleNames of the same length as rawValues, to be able to specify different styles for each cell in the column/row:
# cell types for the cells in each row
<- c("rowHeader", "cell", "cell", "cell")
cellTypes
# formats for the values in each row
# (only the value in the fourth column needs formatting)
<- list(NULL, NULL, NULL, "%.2f")
formats
# construct the table
library(basictabler)
<- BasicTable$new()
tbl
# define a new style
$addStyle(styleName="AltRowLeftAlign", list(
tbl"font-family"="Arial",
"font-size"="0.8em",
"font-weight"="bold",
padding="2px 2px 2px 2px",
"border-bottom"="1px solid #9C0006",
"text-align"="left",
color="#9C0006",
"background-color"="#FFC7CE"
))$addStyle(styleName="AltRowRightAlign", list(
tbl"font-family"="Arial",
"font-size"="0.8em",
"font-weight"="bold",
padding="2px 2px 2px 8px",
"border-bottom"="1px solid #9C0006",
"text-align"="right",
color="#9C0006",
"background-color"="#FFC7CE"
))<- c("AltRowLeftAlign", "AltRowRightAlign",
styleNames "AltRowRightAlign", "AltRowRightAlign")
$cells$setCell(1, 1, cellType="root", rawValue="Sale ID")
tbl$cells$setCell(1, 2, cellType="columnHeader", rawValue="Item")
tbl$cells$setCell(1, 3, cellType="columnHeader", rawValue="Quantity")
tbl$cells$setCell(1, 4, cellType="columnHeader", rawValue="Price")
tbl$cells$setRow(2, cellTypes=cellTypes, formats=formats,
tblrawValues=list(5334, "Apple", 5, 0.34452354))
$cells$setRow(3, cellTypes=cellTypes, formats=formats,
tblrawValues=list(5336, "Orange", 8, 0.4732543), baseStyleNames=styleNames)
$cells$setRow(4, cellTypes=cellTypes, formats=formats,
tblrawValues=list(5338, "Banana", 6, 1.3443243))
$renderTable(styleNamePrefix="t15") tbl
The following example shows two different ways of specifying cell styling whilst creating a table cell-by-cell. The first method defines an entirely new cell style (i.e. that is not part of the standard theming). This cell style is then used when styling one of the cells. The second method specifies one additional style declaration that is applied on top of the standard theming.
library(basictabler)
<- BasicTable$new()
tbl
# specify a new cell style
$addStyle(styleName="AltCell", list(
tbl"font-family"="Arial",
"font-size"="0.8em",
"font-weight"="bold",
padding="2px 2px 2px 8px",
"border"="2px solid #9C0006",
"text-align"="right",
color="#9C0006",
"background-color"="#FFC7CE"
))
# build the table
$cells$setCell(1, 1, cellType="root", rawValue="Sale ID")
tbl$cells$setCell(1, 2, cellType="columnHeader", rawValue="Item")
tbl$cells$setCell(1, 3, cellType="columnHeader", rawValue="Quantity")
tbl$cells$setCell(2, 1, cellType="rowHeader", rawValue=5334)
tbl$cells$setCell(2, 2, cellType="cell", rawValue="Apple")
tbl$cells$setCell(3, 1, cellType="rowHeader", rawValue=5336)
tbl$cells$setCell(3, 2, cellType="cell", rawValue="Orange")
tbl
# use the new style for the following cell (used instead of the theme styling)
$cells$setCell(2, 3, cellType="cell", rawValue=5, baseStyleName="AltCell")
tbl
# specify an additional style declaration for the following cell (used on
# top of the theme styling)
$cells$setCell(3, 3, cellType="cell", rawValue=8,
tblstyleDeclarations=list("background-color"="#FFFF00"))
# render the table
$renderTable(styleNamePrefix="t12") tbl
tbl$setStyling()
The individual cells in the table can have their appearance changed by retrieving the cell then applying a style to the cell. The example below shows two different ways of applying cells to an individual cell. These styles apply in addition to the styles coming from the underlying theme, e.g. highlighting a cell:
# define the colours
<- list(
orangeTheme fontName="Garamond, arial",
fontSize="0.75em",
headerBackgroundColor = "rgb(237, 125, 49)",
headerColor = "rgb(255, 255, 255)",
cellBackgroundColor = "rgb(255, 255, 255)",
cellColor = "rgb(0, 0, 0)",
totalBackgroundColor = "rgb(248, 198, 165)",
totalColor = "rgb(0, 0, 0)",
borderColor = "rgb(198, 89, 17)"
)
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices
# construct the table
library(basictabler)
<- BasicTable$new()
tbl $addData(data.frame(saleIds, items, quantities, prices),
tblfirstColumnAsRowHeaders=TRUE,
explicitColumnHeaders=c("Sale ID", "Item", "Quantity", "Price"),
columnFormats=list(NULL, NULL, NULL, "%.2f"))
# theme the table and render
$theme <- orangeTheme
tbl
# apply an additional highlight to one cell (3rd row, 2nd column)
$setStyling(3, 2, declarations=list("background-color"="#FFFF00"))
tbl
# apply an additional highlight to one cell (3rd row, 3rd column)
<- tbl$createInlineStyle(declarations=list("background-color"="#00FFFF"))
cellHighlight <- tbl$cells$getCell(3, 3)
cell $style <- cellHighlight
cell
# render the table
$renderTable(styleNamePrefix="t16") tbl
In the example above, the default cell style from the theme is still applied. The highlight is applied in addition to the default styling. To stop the base styling being applied, create a new named style and set the baseStyleName property on the cell to the name of the new style.
The tbl$setStyling()
function is used in the example above. This function has the following arguments:
rFrom
and cFrom
are the coordinates of the cell where the styling is to be applied. If the styling is being applied to multiple cells, this is the top-left cell in the rectangular cell range where the styling is to be applied.rTo
and cTo
are the coordinates of the bottom right cell when styling is being applied to a rectangular range of cells. If styling is only being applied to a single cell, these arguments are not needed.rowNumbers
and columnNumbers
are integer vectors of row and/or column numbers specifying where the styling is to be applied. If both rowNumbers
and columnNumbers
are specified, then the cells at the intersection of the specified row numbers and column numbers are styled.cells
is a list of cells to apply styling to. Either rFrom
/cFrom
or cells
is typically specified - not both.cellType
is one of the following values that specifies the cell type to be applied to the specified cells: root, rowHeader, columnHeader, cell, total. The cellType controls the default styling that is applied to the cell.visible
The cell visibility (TRUE
or FALSE
) to apply to the specified cells.baseStyleName
is the name of a style in the table theme to apply to the specified cells. Set this explicitly to NULL to revert to the default style specified in the table theme.style
is a TableStyle
override object to apply to the specified cells. This is created by calling tbl$createInlineStyle()
as shown in the example above.declarations
is a list of style override declarations to apply to the specified cells.applyBorderToAdjacentCells
is a logical value - specify TRUE to override the border in neighbouring cells, e.g. the left border of the current cell becomes the right border of the cell to the left.The tbl$createInlineStyle()
function is also used in the example above. This function creates a new unnamed style (that is not part of the table theme) and takes two arguments: baseStyleName
specifies the name of the style that the new style will be based on (i.e. will have it’s style properties copied from) and declarations
which specifies new/overriding style properties for the new style.
The lapply()
function can be used to set the style for multiple cells to a new inline style:
# apply inline style to multiple cells
<- tbl$createInlineStyle(declarations=list("background-color"="#FFCC66"))
highlight <- tbl$getCells(specifyCellsAsList=TRUE, rowNumbers=c(1, 3))
cells <- lapply(cells, function(cell) {cell$style <- highlight}) lst
For many more examples of styling parts of a table, see the Finding and Formatting vignette.
CSS rendering rules mean that the first encountered border setting is used. When table cells have no separation, this means the left/top borders of a cell are actually defined by the right/bottom borders of the previous cells (i.e. to the left and above). This means attempting to set the border of a specific cell often doesn’t produce the desired effect, e.g. attempting to change the border of a specific cell to red:
<- data.frame(a=c(1,2,3),b=c(4,5,6),c=c(7,8,9))
x <- BasicTable$new()
tbl $addData(x)
tbl$setStyling(rowNumbers=3, columnNumbers=2,
tbldeclarations=list("border"="1px solid red"))
$renderTable() tbl
This can be resolved by specifying applyBorderToAdjacentCells=TRUE
:
<- data.frame(a=c(1,2,3),b=c(4,5,6),c=c(7,8,9))
x <- BasicTable$new()
tbl $addData(x)
tbl$setStyling(rowNumbers=3, columnNumbers=2,
tbldeclarations=list("border"="1px solid red"),
applyBorderToAdjacentCells=TRUE)
$renderTable() tbl
pt$mapStyling()
Sometimes it is desirable to set the styling more dynamically, i.e. the styling of each cell should vary according to the value of the each cell, e.g. increasingly large numbers have an increasingly intense red cell background colour. This can be done with the mapStyling()
method, which has the following arguments:
styleProperty
- the name of the style property to set e.g. “background-color”.cells
- a list specifying the PivotCell
objects to be styled.valueType
- the type of style value to be set - one of the following values: text
/character
, number
/numeric
, or color
/colour
mapType
- the type of mapping to be performed - the following mapping types are supported:
value
- a 1:1 mapping which maps each specified “from” value to the corresponding “to” value, e.g. 100 -> “green”.logic
- each from value is logical criteria - see more details below.range
- values between each pair of “from” values are mapped to the corresponding “to” value, e.g. values in the range 80-100 -> “green”.continuous
- rescales values between each pair of “from” values into the range of the corresponding pair of “to” values, e.g. if the “from” range is 80-100 and the corresponding “to” range is 0.8-1, then 90 -> 0.9.mappings
- the mappings to be applied, specified in one of the following three forms:
list(0, "red", 0.4, "yellow", 0.8, "green")
list(from=c(0, 0.4, 0.8), to=c("red", "yellow", "green"))
function(v, cell) { if(isTRUE(v>0.8)) return("green") }
.styleLowerValues
- a logical value, default FALSE
, that specifies whether values less than the lowest specified “from” value should be styled using the style specified for the lowest “from” value.styleHigherValues
- a logical value, default TRUE
, that specifies whether values greater than the highest specified “from” value should be styled using the style specified for the highest “from” value.mapType
=“logical” is a generic way of specifying mapping rules, which can be of any of the following forms:
"v==12"
, where v represents the cell value."10<=v<15"
.
"10<=v && v<15"
.
"is.na(v)"
.Further Notes:
mapType
=“continuous” cannot be used with valueType
=“text”/“character”.list(0, "red", 1000)
is equivalent to “0<=v<1000”, i.e. the upper value is excluded from the range.styleLowerValues
and styleHigherValues
only apply when valueType
is “range” or “continuous”.valueType
is “range” or “continuous”.Several examples are given below. All of these examples use the following data:
library(basictabler)
library(dplyr)
<- bhmsummary %>%
tocsummary group_by(TOC) %>%
summarise(OnTimeArrivals=sum(OnTimeArrivals),
OnTimeDepartures=sum(OnTimeDepartures),
TotalTrains=sum(TrainCount)) %>%
ungroup() %>%
mutate(OnTimeArrivalPercent=OnTimeArrivals/TotalTrains*100,
OnTimeDeparturePercent=OnTimeDepartures/TotalTrains*100) %>%
arrange(TOC)
# formatting values (explained in the introduction vignette)
=list(NULL, list(big.mark=","), list(big.mark=","),
columnFormatslist(big.mark=","), "%.1f", "%.1f")
mapType="logic"
The example pivot table below maps cell colours from cell values using conditional/logical expressions:
<- BasicTable$new()
tbl $addData(tocsummary, firstColumnAsRowHeaders=TRUE,
tblexplicitColumnHeaders=c("TOC", "On-Time Arrivals",
"On-Time Departures", "Total Trains",
"On-Time Arrival %", "On-Time Departure %"),
columnFormats=columnFormats)
<- tbl$getCells(rowNumbers=2:5, columnNumbers=2:4, matchMode="combinations")
cells $mapStyling(cells=cells, styleProperty="background-color", valueType="color",
tblmapType="logic",
mappings=list("v==2348", "pink", "v<3000", "red", "3000<=v<15000",
"yellow", "v>15000", "green"))
$mapStyling(cells=cells, styleProperty="background-color", valueType="text",
tblmapType="logic", mappings=list("v==1404", "red"))
$renderTable() tbl
mapType="range"
The example pivot table below maps cell colours from cell values using ranges, i.e. 0-1000 -> “red” and 1000-15000 -> “orange”:
<- BasicTable$new()
tbl $addData(tocsummary, firstColumnAsRowHeaders=TRUE,
tblexplicitColumnHeaders=c("TOC", "On-Time Arrivals",
"On-Time Departures", "Total Trains",
"On-Time Arrival %", "On-Time Departure %"),
columnFormats=columnFormats)
<- tbl$getCells(rowNumbers=2:5, columnNumbers=2:4, matchMode="combinations")
cells $mapStyling(cells=cells, styleProperty="background-color", valueType="color",
tblmapType="range",
mappings=list(0, "red", 3000, "orange", 5000,
"yellow", 15000, "green"))
$renderTable() tbl
mapType="continuous"
An example of styling using the “continuous” map type can be found in the Finding and Formatting vignette.
mapType="function"
The example pivot table below maps cell colours using a custom function. The cell
argument passed to the function is the current cell being styled, e.g. to format based on the column number:
<- BasicTable$new()
tbl $addData(tocsummary, firstColumnAsRowHeaders=TRUE,
tblexplicitColumnHeaders=c("TOC", "On-Time Arrivals",
"On-Time Departures", "Total Trains",
"On-Time Arrival %", "On-Time Departure %"),
columnFormats=columnFormats)
<- tbl$getCells(rowNumbers=2:5, columnNumbers=2:4, matchMode="combinations")
cells <- function(x, cell) {
redclr <- 255-floor(140*cell$columnNumber/3)
clr return(paste0("#",
format(as.hexmode(255), width=2),
format(as.hexmode(clr), width=2),
format(as.hexmode(clr), width=2)))
}$mapStyling(cells=cells, styleProperty="background-color", mappings=redclr)
tbl$renderTable() tbl
Since a theme is a collection of styles, creating themes is relatively straightforward. The names of the styles are then assigned to the different types of cells within a table:
<table>
element).E.g. creating a custom theme that displays a mixture of bright colours (a rather ugly bubble-gum theme):
library(basictabler)
# define the theme and styles
<- function(parentTable=NULL, themeName="myCustomTheme") {
createCustomTheme <- TableStyles$new(parentTable=parentTable, themeName=themeName)
tableStyles # borders in purple
$addStyle(styleName="Table", list(
tableStyles"display"="table",
"border-collapse"="collapse",
"border"="2px solid #B28DFF"
))# column headings in pink
$addStyle(styleName="ColumnHeader", list(
tableStyles"font-family"="\"Courier New\", Courier, monospace",
"font-size"="0.75em",
"font-weight"="bold",
padding="2px",
"border"="2px solid #B28DFF",
"vertical-align"="middle",
"text-align"="center",
"font-weight"="bold",
color="#DB49AC",
"background-color"="#FFCCF9",
"xl-wrap-text"="wrap"
))# row headings in blue
$addStyle(styleName="RowHeader", list(
tableStyles"font-family"="\"Courier New\", Courier, monospace",
"font-size"="0.75em",
"font-weight"="bold",
padding="2px 8px 2px 2px",
"border"="1px solid #B28DFF",
"vertical-align"="middle",
"text-align"="left",
"font-weight"="bold",
color="#438EC8",
"background-color"="#ACE7FF",
"xl-wrap-text"="wrap"
))# cells in yellow
$addStyle(styleName="Cell", list(
tableStyles"font-family"="\"Courier New\", Courier, monospace",
"font-size"="0.75em",
padding="2px 2px 2px 8px",
"border"="1px solid #B28DFF",
"text-align"="right",
color="#FF800D",
"background-color"="#FFFFD1"
))# totals in orange
$addStyle(styleName="Total", list(
tableStyles"font-family"="\"Courier New\", Courier, monospace",
"font-size"="0.75em",
"font-weight"="bold",
padding="2px 2px 2px 8px",
"border"="1px solid rgb(84, 130, 53)",
"text-align"="right",
color="#3BC6B6",
"background-color"="#BFFCC6"
))$tableStyle <- "Table"
tableStyles$rootStyle <- "ColumnHeader"
tableStyles$rowHeaderStyle <- "RowHeader"
tableStyles$colHeaderStyle <- "ColumnHeader"
tableStyles$cellStyle <- "Cell"
tableStyles$totalStyle <- "Total"
tableStylesreturn(invisible(tableStyles))
}
# data for the table
<- c(5334, 5336, 5338)
saleIds <- c("Apple", "Orange", "Banana")
items <- c(5, 8, 6)
quantities <- c(0.34452354, 0.4732543, 1.3443243)
prices
# construct the table
library(basictabler)
<- BasicTable$new()
tbl $addData(data.frame(saleIds, items, quantities, prices),
tblfirstColumnAsRowHeaders=TRUE,
explicitColumnHeaders=c("Sale ID", "Item", "Quantity", "Price"),
columnFormats=list(NULL, NULL, NULL, "%.2f"))
# theme the table and render
$theme <- createCustomTheme(tbl)
tbl$renderTable(styleNamePrefix="t8") tbl
basictabler
styles cells using the following rules:
tbl$cells$setCell(1, 2, cellType="columnHeader", rawValue="Item")
tbl$cells$getCell(3, 2)$cellType <- "columnHeader"
tbl$theme
field.createCustomTheme()
.theme
property: tbl$theme <- createCustomTheme(tbl)
baseStyleName
for the cell.
tbl$cells$getCell(3, 2)$baseStyleName <- "AltCellStyle"
.tbl$setStyling(3, 2, baseStyleName="AltCellStyle")
.tbl$setStyling(3, 2, 3, 6, baseStyleName="AltCellStyle")
.tbl$setStyling(3, 2, declarations=list("text-align"="left", "background-color"="yellow"))
.tbl$setStyling(3, 2, 3, 6, declarations=list("text-align"="left", "background-color"="yellow"))
.tbl$setStyling(3, 2, baseStyleName="AltCellStyle", declarations=list("text-align"="left", "background-color"="yellow"))
.tbl$setStyling(3, 2, 3, 6, baseStyleName="AltCellStyle", declarations=list("text-align"="left", "background-color"="yellow"))
.When rendering to HTML, two styles settings are written by basictabler
in the HTML for each table cell:
HTML class attribute
Example: < td class=“StyleName” >
cell$baseStyleName
is used as the HTML class name.cell$baseStyleName
has been explicitly set for a cell, then the base style name (for the relevant cell type) specified in the table theme is used.HTML style attribute
Example: < td style=“text-align:left;background-color:yellow;” >
The cell style override declarations (= the declarations of the inline style) are used as the value of the HTML style attribute for each cell.
The full set of vignettes is: