Skip to content

Commit

Permalink
Match default calendar grid lines to epicurve
Browse files Browse the repository at this point in the history
  • Loading branch information
arcresu committed May 15, 2024
1 parent 0bbdbe0 commit 34798a4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions R/plot_calendar.R
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,12 @@ theme_plot_calendar <- function() {
axis.ticks.y = ggplot2::element_blank(),
axis.text.y = ggplot2::element_blank(),
panel.background = ggplot2::element_blank(),
panel.grid = ggplot2::element_blank(),
panel.grid = ggplot2::element_line(colour = "grey70"),
panel.grid.minor.x = ggplot2::element_line(linewidth = rel(0.5)),
panel.grid.major.y = ggplot2::element_blank(),
panel.grid.minor.y = ggplot2::element_blank(),
panel.border = ggplot2::element_rect(fill = NA),
plot.margin = ggplot2::margin(l = 0, r = 0),
panel.grid.major.x = ggplot2::element_line(colour = "#aaaaaa"),
)
}

Expand Down

0 comments on commit 34798a4

Please sign in to comment.