test
continuous-integration/drone/push Build is passing Details

ServeurDeTest
Noé GARNIER 2 years ago
parent 80f907b4b9
commit c908752d77

@ -13,8 +13,8 @@
v1.type="line"; v1.type="line";
v1.xValueFormatString=lesInfos[0][i]; v1.xValueFormatString=lesInfos[0][i];
v1.dataPoints=[]; v1.dataPoints=[];
for (j = 0; j < lesInfos[1].length; j++) { for (j = 0; j < lesInfos[1][i].length; j++) {
v1.dataPoints.push({x:j+1,y:lesInfos[1][j][0]}); v1.dataPoints.push({x:j+1,y:lesInfos[1][i][j]});
} }
data.push(v1); data.push(v1);
} }
@ -144,6 +144,6 @@
window.addEventListener("load", start); window.addEventListener("load", start);
function start(){ function start(){
dashboard(); dashboard();
setInterval('dashboard()', 10000); setInterval('dashboard()', 20000);
} }

Loading…
Cancel
Save