mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-06 06:21:16 +08:00
I now check for defined-ness of the legend instead of its truth. As a result I can now have a '0'
legend
This commit is contained in:
parent
593e1c09b9
commit
d1ec685694
@ -515,8 +515,8 @@ sub newCurve
|
|||||||
$idx = $#curves;
|
$idx = $#curves;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($title) { $opts = "title \"$title\" $opts" }
|
if(defined $title) { $opts = "title \"$title\" $opts" }
|
||||||
else { $opts = "notitle $opts" }
|
else { $opts = "notitle $opts" }
|
||||||
|
|
||||||
if( defined $newpoint )
|
if( defined $newpoint )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user