FHEM/98_SVG.pm: check fir currval for XY graphs (Forum #66409)
git-svn-id: https://svn.fhem.de/fhem/trunk@13329 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
@@ -2077,7 +2077,8 @@ SVG_render($$$$$$$$$$)
|
||||
my $t = $conf{lTitle}[$i];
|
||||
next if( !$t );
|
||||
my $desc = "";
|
||||
if(defined($data{"min$j"}) && $data{"min$j"} ne "undef") {
|
||||
if(defined($data{"min$j"}) && $data{"min$j"} ne "undef" &&
|
||||
defined($data{"currval$j"}) && $data{"currval$j"} ne "undef") {
|
||||
$desc = sprintf("%s: Min:%g Max:%g Last:%g",
|
||||
$t, $data{"min$j"}, $data{"max$j"}, $data{"currval$j"});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user