How to auto rotate x/y/z-label to the same angle as the axis?
4 次查看(过去 30 天)
显示 更早的评论
I use the 'Rotation' option to get the text aligned with the axis at the momet, eg:
xlabel('Frequency (MHz)','Rotation',-10)
but it is a bit time consuming, especially when you rotate the figure back anf forth to get a nice wiev.
Surely there must be a way to automatically rotate the labels so that they align with the direction of the actual axis? Maybe not actively when rotating but atleast with a command when using "surfc" for example...
2 个评论
Jan
2017-11-27
What exactly is time consuming? Why "surfc"? How do you determine the value of the angle, -10 in your example?
回答(1 个)
Rik
2017-11-27
You can get a handle to the 3d rotation, so if you determine the appropriate rotation (e.g. with the output of view), you can set the ActionPostCallback function.
h=rotate3d;
set(h,'ActionPostCallback',@myfunction);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!