change text colour in foreground of line plot

6 ビュー (過去 30 日間)
Nik Rocky
Nik Rocky 2020 年 7 月 6 日
コメント済み: Nik Rocky 2020 年 7 月 15 日
Hello,
how can I change text color above line plot? It is possible? Its not about changin whole text color, its about just this part that the line is crossing my text behind
to make it more readable
  1 件のコメント
Adam Danz
Adam Danz 2020 年 7 月 7 日
How did you get the black hand symbol for the cursor icon?

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

回答 (2 件)

madhan ravi
madhan ravi 2020 年 7 月 6 日
text(.2,.7,'Echt toll! Nik Rocky','Color','g')
  5 件のコメント
madhan ravi
madhan ravi 2020 年 7 月 6 日
Check if you can experiment with the face alpha properties.
Nik Rocky
Nik Rocky 2020 年 7 月 6 日
ok Thanks!

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


Adam Danz
Adam Danz 2020 年 7 月 7 日
編集済み: Adam Danz 2020 年 7 月 13 日
The color of pixels in a text object cannot be independently changed.
Here are some things you can try to improve the label readability.
1) Add a partially transparent label background using the backgroundColor property and a 4-element RGB value where the 4th element specifies the transparency.
h = labelpoints(x, y, labels, 'backgroundColor', [1 1 1 .5])
or make the text color partially tranparent
h = labelpoints(x, y, labels, 'Color', [1 1 1 .5])
2) Space the labels further from the lines using a larger buffer value and use NE and SW .
h1 = labelpoints(x, y, labels, 'NE', .1) % for orange line
h2 = labelpoints(x, y, labels, 'SW', .1) % for blue line
  1 件のコメント
Nik Rocky
Nik Rocky 2020 年 7 月 15 日
Thank you, it works great!

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

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by