diff options
-rw-r--r-- | datastore-leveldb/wwwroot_ebus/src/ebus.js | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/datastore-leveldb/wwwroot_ebus/src/ebus.js b/datastore-leveldb/wwwroot_ebus/src/ebus.js index 5b56d76..530faf4 100644 --- a/datastore-leveldb/wwwroot_ebus/src/ebus.js +++ b/datastore-leveldb/wwwroot_ebus/src/ebus.js @@ -29,7 +29,7 @@ $(document).ready(function(){ { "sensorname":"heizkreisregler10.betriebsdatenRegler1.kesselTemperatur", "description":"Kessel Temperatur", - "values":jQuery("#ebusgraph").width()/4, + "values":Math.floor(jQuery("#ebusgraph").width()/8), "lines":{fill: true, fillColor: "rgba(80,40,100, 0.1)"}, "show":true, "color":"rgb(80,40,100)" @@ -38,6 +38,7 @@ $(document).ready(function(){ "sensorname":"heizkreisregler9.solarDaten.tempKollektor", "description":"Kollektortemperatur", "lines":{fill: true, fillColor: "rgba(255, 0, 0, 0.4)"}, + "values":Math.floor(jQuery("#ebusgraph").width()/1), "show":true, "color":"#f30000" }, @@ -45,13 +46,14 @@ $(document).ready(function(){ "sensorname":"heizkreisregler9.solarDaten.tempWarmwasserSolar", "description":"Warmwasser Solar", "lines":{fill: true, fillColor: "rgba(30,250,20,0.05)"}, + "values":Math.floor(jQuery("#ebusgraph").width()/8), "show":true, "color":"rgba(30,250,20,0.5)" }, { "sensorname":"feuerungsautomat1.betriebsdatenRegler1.aussenTemperatur", "description":"Aussentemperatur (ebus)", - "values":jQuery("#ebusgraph").width()/4, + "values":Math.floor(jQuery("#ebusgraph").width()/4), "show":true, "lines":{fill: true, fillColor: "rgba(250, 250, 0, 0.2)"}, "color":"rgb(250,250,0)" @@ -73,12 +75,14 @@ $(document).ready(function(){ { "sensorname":"heizkreisregler10.betriebsdatenRegler1.boilerTemperatur", "description":"Boilertemperatur", + "values":Math.floor(jQuery("#ebusgraph").width()/8), "show":false, "color":"#48b4ff" }, {"sensorname":"de.wettermichel.temperature", "description":"Aussentemperatur (wettermichel)", "show":false, + "values":Math.floor(jQuery("#ebusgraph").width()/16), "lines":{fill: true, fillColor: "rgba(132, 181, 0, 0.2)"}, "color":"#84b500" }, @@ -155,7 +159,8 @@ var unplotSensorDetail = function(sensorname) { }; var plotSensorOverview = function(sensorConfig) { - $.getJSON("api/range/"+escape(sensorConfig.sensorname)+"/"+fromOverview+"/"+toOverview+ "/" + numberOfValues/2, + var values = sensorConfig.values || Math.floor(numberOfValues/2); + $.getJSON("api/range/"+escape(sensorConfig.sensorname)+"/"+fromOverview+"/"+toOverview+ "/" + values, function(response) { if (!response.error) { response.data = response.data.map(function(d) { |