View source: R/EnrichCirclize.R
drawLegends | R Documentation |
This function creates two sets of legends, one on the left and one on the right side of a plot. It displays color-coded legends with labels corresponding to different data categories. Each legend entry consists of a colored rectangle and a text label. The left side legend has text aligned to the right of the color block, while the right side legend has text aligned to the left of the color block.
drawLegends(
labels,
colors,
legend_width,
x_positions,
y_position,
just_positions,
text_alignments,
font_size
)
labels |
Vector of labels for the legends. |
colors |
Vector of colors corresponding to the labels. |
legend_width |
The width of each legend viewport expressed in grid units. |
x_positions |
Numeric vector of length 2 specifying the x-positions of the left and right legends. |
y_position |
The y-position common for both legends, expressed as a fraction of the plot height. |
just_positions |
List of two vectors, each specifying the horizontal and vertical justification for the legends. |
text_alignments |
List of two character strings specifying text alignments for the legends ('left' or 'right'). |
font_size |
Numeric value specifying the font size for the legend labels. |
Invisible. This function is called for its side effects of drawing legends on a plot.
labels <- c("Label1", "Label2", "Label3", "Label4", "Label5", "Label6")
colors <- c("#ff0000", "#00ff00", "#0000ff", "#ffff00", "#ff00ff", "#00ffff")
# Convert to 'unit' objects for grid
grid::grid.roundrect(
x = grid::unit(0.5, "npc"), # "npc" stands for normalized parent coordinates
y = grid::unit(0.5, "npc"),
width = grid::unit(0.1, "npc"),
height = grid::unit(0.05, "npc"),
gp = grid::gpar(fill = "red"),
r = grid::unit(0.1, "npc") # rounding radius
)
# Example of drawing legends with specific labels and colors
drawLegends(labels, colors, grid::unit(2, "cm"), c(0.225, 0.75), 0.5,
list(c("left", "center"), c("right", "center")),
list("right", "left"), 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.