Changeset 16299 for schedule/Module
- Timestamp:
- 05/27/13 15:36:37 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r16298 r16299 135 135 136 136 //var source = []; 137 for( varrow=0;row<lines.length; row++)137 for(row=0;row<lines.length; row++) 138 138 { 139 139 var f = lines[row].split(','); 140 140 Time[row]=f[0]; 141 141 142 for( varc=0;c<Time.length;c++)142 for( c=0;c<Time.length;c++) 143 143 { 144 144 var cst=Time[c].split(':'); 145 145 colon[c]=cst[0]; 146 146 Temp[c]=(parseInt(cst[1]/60*100)||parseFloat("0")); 147 for( vari=1;i<colon.length;i++)147 for( i=1;i<colon.length;i++) 148 148 { 149 149 var st=colon[i].split('T'); … … 154 154 newline[row]=(parseFloat(f[4])||parseFloat("0")); 155 155 156 for( varc=0;c<newline.length;c++)156 for(c=0;c<newline.length;c++) 157 157 { 158 158 if(newline[c]==0) … … 165 165 166 166 var a=[]; 167 for( vari=1;i<arrTime.length-1;i++)167 for(i=1;i<arrTime.length-1;i++) 168 168 { 169 169 if(arrTime[i]==0) … … 326 326 var chart = new Highcharts.Chart(options); 327 327 328 for( varsrc=0;src<source.length;src++)328 for(src=0;src<source.length;src++) 329 329 { 330 330 chart.addSeries({name:source[src], data:[]}); // created a series of data and add name of displayed source 331 for( vari=0;i<Timedata[src].length;i++)331 for(i=0;i<Timedata[src].length;i++) 332 332 { 333 333
Note:
See TracChangeset
for help on using the changeset viewer.