Skip to contents

Default theme for heatmap_layout() or stack_layout() object.

Usage

theme_ggalign(...)

Arguments

...

Arguments passed on to ggplot2::theme_classic

base_size

base font size, given in pts.

base_family

base font family

base_line_size

base size for line elements

base_rect_size

base size for rect elements

Value

A theme object.

Details

You can use the option "ggalign.default_theme" to change the default theme.

Examples

old <- options(ggalign.default_theme = theme_bw())
ggheatmap(matrix(rnorm(81), nrow = 9)) +
    hmanno("top") +
    align_dendro(k = 3L)
#> → heatmap built with `geom_tile()`

options(ggalign.default_theme = old)