You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems as if the styling of my row groups is bleeding into the rowname columns when I convert to raw html, producing (in this example) two consecutive columns that are in weight bold.
First of all, this is the blastula repository (it's fine, maybe you're trying to get a table into an email message body?) and second, the as_raw_html() function has been fixed up in version 0.8.0 of gt. Could you update and try again?
Hello,
It seems as if the styling of my row groups is bleeding into the rowname columns when I convert to raw html, producing (in this example) two consecutive columns that are in weight bold.
`library(gt)
gtcars %>%
gt(
rowname_col = "model",
groupname_col = "mfr"
) %>%
tab_options(
row_group.as_column = TRUE
) %>%
tab_style(
style = list(
cell_fill(color = rgb(106, 151, 212, maxColorValue = 255)),
cell_text(
color = "white",
weight = "bold"
)
),
locations = cells_column_labels()
) %>%
tab_style(
style = list(
cell_text(
weight = "bold"
)
),
locations = cells_row_groups()
) -> gt_table_object
gt_table_object %>% as_raw_html() -> email_html`
The text was updated successfully, but these errors were encountered: