http://qs321.pair.com?node_id=1107319


in reply to chart::gnuplot and labels?

Hi, welcome to the monastery.

Your code didn't specify any position for labels. If you want them on top of the graph, use graph coordinates with 0,0 being lower left and 1,1 being upper right. So change your code:

$chart->label( text => "Labeled at (-2, 0.5)", fontcolor => 'blue', );
To something like:
$chart->label( text => "Labeled at 20% from left, 25% from top", fontcolor => 'blue', position => 'graph 0.2, graph 0.75' );

You'll also want to close that bug report :o)