How to align colorbar YTickLabel as middle/left/right?

조회 수: 5 (최근 30일)
raym
raym 2017년 10월 27일
댓글: raym 2017년 10월 27일
imshow('rice.png')
h = colorbar;
h.YTickLabel = cellstr([char(num2str([1,5000000,1000,5000,10000,15000]')),repmat(' (USD)',6,1)]);
The T tick lable is centralized, which is very ugly. I there a way to make it aligned left or right?
  댓글 수: 3
raym
raym 2017년 10월 27일
There is no option to align, and the only way to tweak is to adjust the input o f the TickLabel.
raym
raym 2017년 10월 27일
To align left:
imshow('rice.png')
h = colorbar;
YTickLabels = strtrim(cellstr([char(num2str([1,5000000,1000,5000,10000,15000]')),repmat(' (USD)',6,1)]));
h.YTickLabel = YTickLabels;

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Axis Labels에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by