In a color bar, how can I change to color of the ticks, number labels, and string label?
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Matthew Thompson
le 7 Juil 2021
Réponse apportée : Cris LaPierre
le 7 Juil 2021
I can add a label and change its color as follows:
cbar = colorbar;
cbar.Label.String = 'Prob. Density';
cbar.Label.Color = [1,1,1];
I'd also like to make the tick marks and number labels white with something like cbar.Ticks.Color = [1,1,1], but can't quite find the right syntax.
0 commentaires
Réponse acceptée
Cris LaPierre
le 7 Juil 2021
cbar = colorbar;
cbar.Label.String = 'Prob. Density';
cbar.Color = "w";
set(gcf,'Color',[0.5 0.5 0.5])
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Color and Styling dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
