How to make text in plot follow colormap?

1 回表示 (過去 30 日間)
Lucas Wong
Lucas Wong 2022 年 5 月 10 日
編集済み: Lucas Wong 2023 年 2 月 25 日
Hi everyone,
I am trying to make a plot where instead of a legend I have used text to annotate just above each line. Here is an example:
I have used a colormap (winter) to color each line in my plot by:
set(0,'DefaultAxesColorOrder', winter(5));
I have then placed text at the chosen position by selecting an x and y coordinate.
t = text(12 ,1.4, NCA-OCY,'FontSize',16); %...ect
Q: How would I go about applying the same colormap to my plot labels?
Thanks!

採用された回答

DGM
DGM 2022 年 5 月 10 日
編集済み: DGM 2022 年 5 月 10 日
Consider the crude example:
% you have some plots already
plot(-0.5:4.5,0.5:5.5)
cmap = winter(5); % use the colormap
for k = 1:5
t(k) = text(0,k,sprintf('this is label #%d',k),'FontSize',16);
t(k).Color = cmap(k,:); % just set the color
end
Note that t is an array of graphics handles instead of a scalar handle. If you were to need to change the text objects later, you'd still be able to.
  1 件のコメント
Lucas Wong
Lucas Wong 2022 年 5 月 11 日
This worked great. Thanks for your help!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeColor and Styling についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by