| no_lines | R Documentation | 
A table style with no lines or borders
no_lines( font_size = 14, font_color = "#222222", header_font_size = 15, header_font_color = "#222222", background_color = NULL, centered = FALSE, cell_padding = 6 )
| font_size | Numeric value representing the size of the font within the table (in px). Default is 14. | 
| font_color | Color of the font for the text within the table. Default is #222222. | 
| header_font_size | Numeric value representing the size of the font within the table (in px). Default is 15. | 
| header_font_color | Color of the font for the header text. Default is transparent | 
| background_color | Background color of the table. Default is NULL. | 
| centered | Logical: vertically center the contents of the table. Default is FALSE. | 
| cell_padding | Numeric value representing the padding size between cells (in px). Default is 6. | 
an object of class theme that is applied to a reactable table.
data <- iris[10:29, ]
## Standard no_lines theme
reactable(data,
          theme = no_lines())
## Additional options applied
reactable(data,
          theme = no_lines(font_size = 12, font_color = "grey", cell_padding = 3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.