Same colormap with colorbar which has two axes
5 views (last 30 days)
Show older comments
Hi,
Would it be possible to have a colorbar with two variables (one on each side of the colorbar)?
I.e. if you take this Colorbar for example, I would like to also have different values on the left side of the colorbar for a different variable which shares the same units.
Thank you.
0 Comments
Answers (2)
Rik
on 13 Aug 2019
You can add a second tick row on the right side of the colorbar using the code below.
f=figure;
image
c_handle=colorbar;
%c_handle=findobj(get(f,'Children'),'Tag','Colorbar');
new_ax=axes(...
'Parent',f,...
'Units',c_handle.Units,'Position',c_handle.Position,...
'Color','none',...
'YTick',1:10,'YLim',[1 10],...
'XTick',[],...
'TickDir','out');
0 Comments
See Also
Categories
Find more on Red 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!