bcgov / shinyssdtools

Shiny interface to ssdtools R package
https://bcgov.github.io/shinyssdtools/
Apache License 2.0
7 stars 4 forks source link

theme_set bw #143

Closed sebdalgarno closed 5 months ago

sebdalgarno commented 5 months ago

use theme_set(theme_bw()) for both plots this would potentially replace this code in shiny app?

 ggplot2::theme(
      panel.border = ggplot2::element_blank(),
      panel.grid.major = ggplot2::element_blank(),
      panel.grid.minor = ggplot2::element_blank(),
      panel.background = ggplot2::element_rect(fill = NA, colour = "black"),
      axis.text = ggplot2::element_text(color = "black"),
      legend.key = ggplot2::element_rect(fill = NA, colour = NA)
    )
sebdalgarno commented 5 months ago

not worth changing at this point