Hi!
A simple question, I am plotting the leiden clusters using sc.pl.umap in this manner:
sc.pl.umap(
dataset,
layer = "X_umap",
use_raw=False,
color="clusters",
add_outline=True,
legend_loc="on data",
legend_fontsize=12,
legend_fontoutline=2,
frameon=False,
title="clustering of cells",
palette="Set1",
show=False,
textfont_color="orange"
)
How can I manipulate the size and color of the text that is drawn on top of the clusters to indicate their number?
So for example in this figure: Leiden clusters
change the font size or the color of the numbers 1, 2, 3 …,
Thanks!