cyto_plot_theme provides an easy way to alter the theme used by cyto_plot. By calling cyto_plot_theme prior to plotting, subsequent plots will inherit these arguments so there is no need to supply them manually each time. For a complete list of supported arguments see cyto_plot_theme_args.

cyto_plot_theme(...)

Arguments

...

arguments supported by cyto_plot_theme.

Author

Dillon Hammill (Dillon.Hammill@anu.edu.au)

Examples

# Make all plots have a black background cyto_plot_theme(border_fill = "black") # Black ground with custom colour scale for points and purple gates cyto_plot_theme( border_fill = "black", point_col_scale = c( "cyan", "green", "yellow", "orange", "red", "darkred" ), gate_line_col = "magenta" ) # Reset to default setting cyto_plot_theme_reset()