gnuplot wants the title to be given before the extra curve options, so I do that

This commit is contained in:
Dima Kogan 2011-01-03 16:16:27 -08:00
parent 497c4cc0d6
commit 91134938a7

View File

@ -587,7 +587,7 @@ sub updateCurveOptions
$title = $id if $options{autolegend}; $title = $id if $options{autolegend};
my $titleoption = defined $title ? "title \"$title\"" : "notitle"; my $titleoption = defined $title ? "title \"$title\"" : "notitle";
$curveoptions->{options} = "$curveoptions->{extraoptions} $titleoption"; $curveoptions->{options} = "$titleoption $curveoptions->{extraoptions}";
} }
sub getCurve sub getCurve