diff --git a/fhem/webfrontend/pgm3/CHANGED b/fhem/webfrontend/pgm3/CHANGED index 1df224152..97500c863 100644 --- a/fhem/webfrontend/pgm3/CHANGED +++ b/fhem/webfrontend/pgm3/CHANGED @@ -120,3 +120,6 @@ Changelog -- bugfix: HMS100WD is now aligned with other HMS-Devices -- feature: Now there is a warning if there are not sufficient data to draw a gnuplot graph -- feature: more information about new HMS-Devices + +2007-09-05 (cvs) +-- feature: gnuplot pictures of FHT without all data (actuator, desired-temp) are shown with only measured temp diff --git a/fhem/webfrontend/pgm3/HISTORY b/fhem/webfrontend/pgm3/HISTORY index e196843f2..b70fbb874 100644 --- a/fhem/webfrontend/pgm3/HISTORY +++ b/fhem/webfrontend/pgm3/HISTORY @@ -22,3 +22,8 @@ - Martin 2007-09-04 - Small changes in gnuplot.php, config.php, index.php, hms100.php + +- Martin 2007-09-05 + - Change in gnuplot.php: FHT: if there are not sufficient data (e.g. actuator) only measured-temp will be drawn + + diff --git a/fhem/webfrontend/pgm3/include/gnuplot.php b/fhem/webfrontend/pgm3/include/gnuplot.php index b79c8730d..74ed5773e 100644 --- a/fhem/webfrontend/pgm3/include/gnuplot.php +++ b/fhem/webfrontend/pgm3/include/gnuplot.php @@ -78,6 +78,10 @@ EOD; set y2label 'Actuator (%)' set y2range [$FHTy2range] "; + $gplotmain2=" + set ylabel 'Temperature (Celsius)' + set grid ytics + "; $gplotmaintmp = <<