Set position of tick labels

347 ビュー (過去 30 日間)
Ariel Balter
Ariel Balter 2011 年 3 月 2 日
編集済み: Walter Roberson 2021 年 5 月 25 日
Sometimes tick labels end up too close to the axis. Is there a way to adjust the position of the tick labels, for instance, moving the y tick labels a little bit to the left?

回答 (5 件)

JohnA
JohnA 2020 年 11 月 3 日
編集済み: Walter Roberson 2021 年 5 月 25 日
This is a very simple fix that works in Matlab v2019:
% adjust ticklabels away from axes
a=gca;
a.XRuler.TickLabelGapOffset = -8; % negative numbers move the ticklabels down (positive -> up)
a.YRuler.TickLabelGapOffset = -8; % negative numbers move the ticklabels right (negative -> left)
Credit for this solution here:
  1 件のコメント
Adam Danz
Adam Danz 2021 年 5 月 25 日
編集済み: Adam Danz 2021 年 5 月 25 日
Note, to move the labels away from the axes the offset values should be positive. The comments in the code above are incorrect.
Credit goes to Yair's undocumented Matlab blog rather than the stackoverflow link (which cites Yair's blog).

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


Walter Roberson
Walter Roberson 2011 年 3 月 2 日
There is no documented way of doing it.
You could try setting the tick labels manually, to include trailing spaces after the label, something like
set(gca, 'YTickLabel', num2str(reshape(get(gca, 'YTick'),[],1),'%.3f ') )
  2 件のコメント
Ariel Balter
Ariel Balter 2011 年 3 月 2 日
Thanks. I don't quite get what that is doing, or the following similar answer. But the basic idea seems to be to turn the tick labels into strings and add some space after. Makes sense.
Still no solution for x tick labels.
Very strange to not have this feature.
Walter Roberson
Walter Roberson 2011 年 3 月 2 日
編集済み: Walter Roberson 2020 年 8 月 8 日
The only solution I know of for xtick is to set xticklabels to [] (the empty array), and then to use the values from the xtick property to figure out where to text() the desired tick labels in to place. With standard font sizes, one line would be 19 pixels high. You have to start out, though, with a conversion between data coordinates and pixels:
xlabshift = 20;
xtickpos = get(gca, 'xtick');
ylimvals = get(gca, 'YLim');
t = text(xtickpos(1), ylimvals(1), str2num(xtickpos(1)));
set(t, 'Units','pixels');
set(t, 'Position', get(t,'Position')-[0 xlabshift 0]);
set(t, 'Units', 'data');
t1 = get(t, 'Position');
xlaby = t1(2);
Then for further labels, instead of setting at y coordinate ylimvals(1) in data space, set at y coordinate xlaby -- it will be the data coordinate corresponding to 20 pixels below the y axis. Unless, of course, you resize the axis...

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


Ross Wilkinson
Ross Wilkinson 2021 年 5 月 25 日
My hacky way of moving xtick labels away from the x axis is to add lines into each label string:
ax = gca;
sp = '\newline\newline\newline\newline\newline'; %5 lines of spacing
ax.XTickLabel = {[sp 'TickLabel1'],[sp 'TickLabel2'],[sp 'TickLabel3']};

Matt Fig
Matt Fig 2011 年 3 月 2 日
Not directly, but try this:
YTL = get(gca,'yticklabel');
set(gca,'yticklabel',[YTL,repmat(' ',size(YTL,1),1)])
This simply moves the ticklabels over to the left. As for the x-axis, I don't know how to do that.

Alejandro Fernández
Alejandro Fernández 2020 年 8 月 7 日
The previous answers doesn't work for me, so I tries with this and that works, it's more os less the previous answer:
ax = gca;
ax.YTickLabel = [num2str(ax.YTick.') repmat(' ',size(ax.YTickLabel,1),1)];

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by