The following plot command produces a bar chart, and above each bar the value is plotted as label, formatted with gprintf:
plot "data.txt" using 6:1 index 0 notitle with boxes linestyle 1,\
"data.txt" using 6:(0.7):(gprintf("%5.2f", $1)) index 0 notitle \
with labels font "Courier,34" rotate left
I'd like the value labels to be right-aligned so I can use the nicer-looking Helvetica font instead of Courier to align the decimal points.
So, how can I include the justification in the above command?
I failed to find anything about this specific problem in the Gnuplot documentation or on the Web. Other labels can be justified easily, but is it also possible when plotting with labels?