Learn R Programming

tableHTML (version 2.1.2)

add_css_second_header: Add css to tableHTML's second headers

Description

add_css_second_header will add css to a tableHTML's second headers

Usage

add_css_second_header(tableHTML, css, second_headers)

Value

A tableHTML object.

Arguments

tableHTML

A tableHTML object created by the tableHTML function.

css

A list of two elements with the corresponding css. The first element of the list should be an atomic vector with the style definitions (e.g. background-color). The second element will be an atomic vector with the same length as the first element, which will contain the style definitions' values (e.g. red). Check the examples for more information.

second_headers

A numeric atomic vector with the indices of the second headers where the style definitions will be applied on. At least one second header index must be provided.

Details

add_css_second_header will add css to a tableHTML's second headers.

Examples

Run this code
tableHTML(mtcars, second_headers = list(c(3, 4, 5), c('col1', 'col2', 'col3'))) %>% 
  add_css_second_header(css = list(c('background-color', 'border'), 
                                   c('lightgray', '3px solid green')),
                        second_headers = c(1, 3))  

Run the code above in your browser using DataLab