add units to colorbar TickLabels (format)
Mostrar comentarios más antiguos
I'm trying to add percentage signs to TickLabels in colorbar
Here's my code:
contourf(peaks)
c = colorbar;
c.TickLabelFormat = '%g%%'
yet the next message appears: "No public property TickLabelFormat exists for class matlab.graphics.illustration.ColorBar"
I know you can set the scale value with symbols manually as it's explained here:
https://www.mathworks.com/help/matlab/creating_plots/change-colorbar-width.html
but I would like add the symbol to any value the colorbar takes. It should look like this:

I would really appreciate any help you could give me. Thanks!
Respuesta aceptada
Más respuestas (1)
dpb
el 22 de Ag. de 2018
c.Ruler.TickLabelFormat='%g%%';
Unfortunately, you can only know about this by using Yair's function to discover undocumented/hidden properties UNDOCUMENTED
1 comentario
Emanuel Valdes
el 23 de Ag. de 2018
Categorías
Más información sobre Axis Labels en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!