text_color {huxtable}R Documentation

Text color

Description

Functions to get or set the text color property of huxtable cells.

Usage

text_color(ht)
text_color(ht) <- value
set_text_color(ht, row, col, value, byrow = FALSE)

Arguments

ht

A huxtable.

value

A character vector or matrix of valid R colors. Set to NA to reset to the default, which is NA.

row

A row specifier. See rowspecs for details.

col

An optional column specifier.

byrow

If TRUE, fill in values by row rather than by column.

Details

Colors can be in any format understood by R, e.g. "red", "#FF0000" or rgb(1, 0, 0).

Value

For text_color, the text_color property. For set_text_color, the ht object.

See Also

Other formatting functions: background_color, bold, font_size, font, na_string, number_format

Examples


ht <- huxtable(a = 1:3, b = 1:3)
text_color(ht) <-  'blue'
text_color(ht)


ht <- huxtable(a = 1:3, b = 3:1)
set_text_color(ht, 'blue')
set_text_color(ht, 1:2, 1, 'blue')
set_text_color(ht, 1:2, 1:2, c('blue', 'red'), byrow = TRUE)
set_text_color(ht, where(ht == 1), 'blue')

[Package huxtable version 4.2.0 Index]