Change colorbar title position latex
43 views (last 30 days)
Show older comments
Hi,
In the attached figure, I would like to reposition the colorbar axis title to be along with colorbar. May I know how to change the psotion.
set(c,'String',['$','\omega','(1/s)','$'],'Interpreter','latex','fontsize',18);
0 Comments
Accepted Answer
Ameer Hamza
on 19 Oct 2020
Try something like this
c = colorbar;
c.Title.String = '$\omega(1/s)$';
c.Title.Interpreter = 'latex';
c.Title.FontSize = 16;
c.Title.Units = 'data';
c.Title.Position(1:2) = [3.5 mean(c.Limits)]; % adjust value of 3.5 until you get correct horizontal position
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!