XTickLabelRotation for plotyy in MATLAB 2014bis not working.

1 回表示 (過去 30 日間)
pr
pr 2015 年 2 月 23 日
編集済み: pr 2015 年 2 月 23 日
I need to plot data with two y-axis with common x-axis [date and time]. And later i would like to rotate the 'XTickLabel' by 60 degrees. Code:
x= [now-.5 now-.3 now];;
y1=[20 35 15];
y2 = [9 10 11];
plotyy(x,y1,x,y2);
datetick('x',31,'keepticks')
h=gca;
h.XTickLabelRotation = 60;
xlabel('Date&Time');
The 'xlabel' and some part of the XTickLabel are hidden. It is working perfectly for 'plot' and if I run the same code for 'plotyy' it is not working. How to solve this issue?
  1 件のコメント
Sean de Wolski
Sean de Wolski 2015 年 2 月 23 日
Another model example of a well written question!
Clear reproduction steps, a description of the problem, etc.

サインインしてコメントする。

回答 (1 件)

Sean de Wolski
Sean de Wolski 2015 年 2 月 23 日
編集済み: Sean de Wolski 2015 年 2 月 23 日
Plotyy creates two axes on top of each other, one of who's xtick labels is off. Since gca is non-deterministic, you're apparently setting the wrong one. Thus set both of them!
x= [now-.5 now-.3 now];
y1=[20 35 15];
y2 = [9 10 11];
ax = plotyy(x,y1,x,y2);
datetick('x',31,'keepticks')
[ax.XTickLabelRotation] = deal(60);
xlabel('Date&Time');
  3 件のコメント
Sean de Wolski
Sean de Wolski 2015 年 2 月 23 日
編集済み: Sean de Wolski 2015 年 2 月 23 日
The tick labels are just too long. Pick a different format, shrink the axes, or choose a different rotation.
pr
pr 2015 年 2 月 23 日
編集済み: pr 2015 年 2 月 23 日
@ Sean de Wolski: you said that "The tick labels are just too long".I have an another example where x-axis is no more date&time it is a numeric still the same error is reproduced. Look into the attachments. If the rotation is more than 20° it fails.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGrid Lines, Tick Values, and Labels についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by