Skip to content

Commit

Permalink
Changed color of upset plot
Browse files Browse the repository at this point in the history
  • Loading branch information
gavieira committed Nov 30, 2023
1 parent d3dd303 commit 257edd0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion R/06-plots_and_app.R
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,13 @@ plot_venn <- function(db_list, ...) {
#'
plot_upset <- function(db_list, ...) {
uuid <- get_uuid_list(db_list)
upset <- UpSetR::upset(UpSetR::fromList(uuid), ...)
upset <- UpSetR::upset(UpSetR::fromList(uuid),
main.bar.color = "#08306B",
sets.bar.color = "#08306B",
att.color = "steelblue",
shade.color = "steelblue",
matrix.color = "#08306B",
...)
return ( add_logo_to_plot(upset) )
}

Expand Down

0 comments on commit 257edd0

Please sign in to comment.