Closed davidhodge931 closed 8 months ago
Particularly:
library(tidyverse) library(palmerpenguins) library(canvasXpress) p <- penguins |> ggplot() + geom_point(aes(x = flipper_length_mm, y = body_mass_g, colour = species,)) + theme(panel.grid = ggplot2::element_line(linewidth = 5)) + theme(panel.grid.major.x = element_blank()) + theme(panel.grid.minor = element_blank()) p canvasXpress(p)
Fixed in version 48.6 too. The units are not honored as they will scale according to the size of the plot.
Works great :)
Particularly: