From 0c5ffd06e96f6a41983edb82fd305a364c56ee0c Mon Sep 17 00:00:00 2001 From: davidhodge931 Date: Fri, 5 Jul 2024 10:51:37 +1200 Subject: [PATCH] Update --- vignettes/ggblanket.Rmd | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vignettes/ggblanket.Rmd b/vignettes/ggblanket.Rmd index 18d2bb79d..cdf33d13f 100644 --- a/vignettes/ggblanket.Rmd +++ b/vignettes/ggblanket.Rmd @@ -251,11 +251,13 @@ penguins2 |> ### 11. Side-effects to the `mode` based on the `mode_orientation` -The `gg_*` function adds helpful side-effects to the mode. +The `gg_*` function adds helpful side-effects to the mode. The intent is to enable users to be able to use one theme, which can then be applied asymmetrically. Where `mode_orientation = "x"`, the `gg_*` function will remove the y axis line/ticks and the x gridlines from the `mode` (by changing their colour to "transparent"). Where it is `mode_orientation = "y"`, the opposite will occur. If the `gg_*` guesses an incorrect `mode_orientation`, then the user can change this. -For this reason, any `mode` used should be designed to anticipate these side-effects. +Additionally, the `gg_*` function will remove ticks from discrete scales. + +Any `mode` used should be designed to anticipate these side-effects. To avoid these side-effects, instead `+` the theme on to the `gg_*` output (or use the `theme` argument in `set_blanket`).