Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to left align key text in gnuplot?

Tags:

gnuplot

enter image description here

By default, gnuplot aligns keys on right. Since I'm putting the legend on the top right section, I'd like to align them on left.

like image 392
narengi Avatar asked Feb 27 '15 04:02

narengi


2 Answers

You can use the Left keyword to the set key command:

set key Left

Type ? key at the gnuplot command line for more details on messing with the key.

like image 170
andyras Avatar answered Sep 25 '22 09:09

andyras


For aligning the labels as well:

set key reverse Left
like image 38
hlrm Avatar answered Sep 25 '22 09:09

hlrm