ylabel('Lode Angle','FontSize',16,'FontWeight','bold','Rotation',0,'FontName','Times New Roman');指定旋转方向
时间: 2023-08-06 07:22:49 浏览: 57
UIButton,UILabel文字旋转(倾斜)
如果您需要将 y 轴标签旋转 90 度,可以将 'Rotation' 参数更改为 90,如下所示:
```
ylabel('Lode Angle','FontSize',16,'FontWeight','bold','Rotation',90,'FontName','Times New Roman');
```
如果您需要将标签旋转 -90 度(即向左旋转),可以将 'Rotation' 参数更改为 -90。
阅读全文