I would like to be able to turn off the black lines that are linked to the numbers in the legend. If I increase the width, they will disappear, but I would like to keep the width as it is.
Is it possible to just add FALSE somewhere?
Minn=-15
Maxx=1
col_fun = colorRamp2(c(Minn,-3.3,Maxx),
c("blue", "#EEEEEE", "red"))
lgd_sig2 = Legend(col_fun=col_fun,
title = "Abundance (log2)",
legend_height = unit(1.5, "cm"),
title_position = "topcenter",
title_gp = gpar(fontsize = 5),
labels_gp = gpar(fontsize = 5),
direction = "horizontal",
at = c(Minn,-3.3,Maxx),
labels_rot = 0,
grid_height = unit(0.25, "cm"),
legend_width = unit(1.22, "cm"))