Cannot move or resize colorbar in tiledlayout
9 次查看(过去 30 天)
显示 更早的评论
Hi everyone. I have a problem with the Colorbar and the tiledlayout function. Once I create a tiledlayout and create the colorbar for each axes it appears that i cannot manually move or resize the colorbar. The following warning appears:
Warning: Error updating ColorBar.
The reference object is invalid.
And then the colorbar places in the middle of the axes.
As an example, try out this:
tiledlayout(1,2);
ah(1)=nexttile(1); imagesc(rand(3,4));
ah(2)=nexttile(2); imagesc(rand(3,4));
cbh = colorobar(ah(2));
cbh.Position(4) = 0.5
5 个评论
Sindar
2020-1-20
The exact same behavior happens when you try to move/resize it in the GUI. That's a bad sign
回答(1 个)
Edoardo Ferocino
2020-1-20
1 个评论
Sindar
2020-1-20
Hopefully they'll improve it in later versions. I was also about to switch to TiledChartLayout. Thanks, now I know to wait until it's more a more complete option.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!