Changing Name Location of Points

4 views (last 30 days)
Johann Seidl
Johann Seidl on 19 Feb 2020
Commented: Johann Seidl on 20 Feb 2020
Hey Community,
i am trying to name points in graph. It is writing the correct description at almost the correct position. For better visiblity I want, that the description in the graph is very close to the point but not interacting with any line in the graph.
Currently I use the following statement to name the points
text(x_coord , y_coord , Number of the point, 'fontsize',15)
Is there any feasible solution for that problem?
Thanks in advance.
  2 Comments
Johann Seidl
Johann Seidl on 20 Feb 2020
Thanks but no. Because i do need that numbers label the points.

Sign in to comment.

Accepted Answer

darova
darova on 19 Feb 2020
You can set backgroundcolor to your labels
x = linspace(0,10);
y = sin(x);
plot(x,y)
text(0.8,0.8,'he','backgroundcolor','r')
  1 Comment
Johann Seidl
Johann Seidl on 20 Feb 2020
Thanks! It's not my ideal imagination but it works well!

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!