Nothing
#' Apply dot matrix theme to a gt table
#'
#' @param gt_object An existing gt table object of class `gt_tbl`
#' @param ... Additional arguments passed to `gt::tab_options()`
#' @param color A string indicating the color of the row striping, defaults to a light green. Accepts either named colors or hex colors.
#' @return An object of class `gt_tbl`.
#' @export
#' @section Examples:
#' ```r
#' library(gt)
#' themed_tab <- head(mtcars) %>%
#' gt() %>%
#' gt_theme_dot_matrix() %>%
#' tab_header(title = "Styled like dot matrix printer paper")
#' ```
#' @section Figures:
#' \if{html}{\figure{gt_dot_matrix.png}{options: width=100\%}}
#'
#' @family Themes
gt_theme_dot_matrix <- function(gt_object, ..., color = "#b5dbb6") {
stopifnot("'gt_object' must be a 'gt_tbl', have you accidentally passed raw data?" = "gt_tbl" %in% class(gt_object))
gt_object %>%
opt_row_striping() %>%
opt_table_font(font = "Courier") %>%
tab_options(
...,
heading.align = "left",
heading.border.bottom.color = "white",
column_labels.text_transform = "lowercase",
column_labels.font.size = pct(85),
column_labels.border.top.style = "none",
column_labels.border.bottom.color = "black",
column_labels.border.bottom.width = px(2),
table.border.bottom.style = "none",
table.border.bottom.width = px(2),
table.border.bottom.color = "white",
table.border.top.style = "none",
row.striping.background_color = color,
table_body.hlines.style = "none",
table_body.vlines.style = "none",
data_row.padding = px(1)
) %>%
opt_css(
"tbody tr:last-child {
border-bottom: 2px solid #ffffff00;
}
",
add = TRUE
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.