Is default color bar min/max determined by displayed portion of the plot or all of it?
1 次查看(过去 30 天)
显示 更早的评论
I use a color bar with 3-D data, so each point (X,Y) on the plot has a color determining its value. I changed the X axis min or max, decreasing the axis range, and saw that the color bar min/max did not change and the image color also remained the same.
This was surprising since the excluded region contained hot spot which were now removed from the plot.
Is there a way to refresh the color bar min/max (i.e. CLim values), after changing axes ranges so that it only refers to the portion of the plot being displayed?
Thanks, Neil
0 个评论
回答(1 个)
Sean de Wolski
2012-8-7
You could use addlistener to add a listener to the axes' 'xlim' and 'ylim' properties. Then when they change the listener fires a callback to update the colorbar.
2 个评论
Sean de Wolski
2012-8-7
That's what the listener would do. It will sit in the background completely forgotten about and bored until the property its listening to changes ( 'PostSet' event). Then it will fire the callback.
The axes doesn't have a min and a max property so I am not sure what you mean by that.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!