Reputation: 2251
I wished to write the label of each line along its respective line plot. Is it possible for Gnuplot to mention the label near the end of the line plot by itself without resorting to manually mention the label locations in the plot?
Upvotes: 2
Views: 1593
Reputation: 3763
In recent gnuplot version you can use the title at end
feature:
plot "patb.txt" title "patb rand" at end
you might want to change the right margin a bit via set rmargin 20
I would suggest to doit manually since he only options for at
are begin
or end
(from help plot title
)
Upvotes: 4