Skip to content

Commit

Permalink
removed panel.background from ggsymmetric
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexChristensen committed Feb 7, 2024
1 parent 18b0165 commit c07aa22
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/helpers.R
Original file line number Diff line number Diff line change
Expand Up @@ -2608,7 +2608,9 @@ ggsymmetric <- function(
return(
ggplot2::ggplot(
data = symmetric_df, ggplot2::aes(x = Rows, y = Columns, fill = Values)
) + ggplot2::geom_tile(color = tile.color)
) + ggplot2::geom_tile(color = tile.color) + ggplot2::theme(
panel.background = ggplot2::element_theme()
)
)

}
Expand Down

0 comments on commit c07aa22

Please sign in to comment.