Contour-plot - Delete lines in legend colorbar
3 views (last 30 days)
Show older comments
The colorbar for a logarithmic contour plot shows many small intermediate lines that I would like not to include. Can this be removed?

0 Comments
Accepted Answer
Bjorn Gustavsson
on 25 Jun 2021
If you keep track of the handle returned by colorbar then it is easy to supress the ticks:
cbh = colorbar;
set(cbh,'TickLength',0.00)
However, I find these tickmarks very helpful to guide the eyes - especially for plots on logarithmic scales (but this is obviously a design choise depending on personal preferences).
HTH
More Answers (0)
See Also
Categories
Find more on Colormaps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!