mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-12-15 17:39:08 +08:00
gnuplot wants the title to be given before the extra curve options, so I do that
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user