Changeset 15908 for schedule/Module
- Timestamp:
- 05/21/13 15:47:42 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r15907 r15908 97 97 var cst=Time[c].split(':'); 98 98 colon[c]=cst[0]; 99 Temp[c]=(parse Int(cst[1]/60*100)||parseInt("0"));99 Temp[c]=(parseFloat(cst[1]/60*100)||parseFloat("0")); 100 100 for(var i=1;i<colon.length;i++) 101 101 { 102 102 var st=colon[i].split('T'); 103 arrTime[i]=(parse Int(st[1])||parseInt("0"));103 arrTime[i]=(parseFloat(st[1])||parseFloat("0")); 104 104 } 105 105 } 106 106 //arr[row]="["+f[4]+"]"; 107 newline[row]=(parseFloat(f[4])||parse Int("0"));107 newline[row]=(parseFloat(f[4])||parseFloat("0")); 108 108 var s=[]; 109 109 for(var c=0;c<newline.length;c++) … … 142 142 newdata=s; 143 143 newtime=finaldata; 144 //document.getElementById('data').innerHTML=source;144 document.getElementById('data').innerHTML=finaldata; 145 145 146 146 options.series.push({ 147 147 148 data:for(var i=0; i<arrTime.length;i++) 149 { 150 newline[i]; 151 }, 148 data:[finaldata] 152 149 }); 153 150 var chart = new Highcharts.Chart(options);
Note:
See TracChangeset
for help on using the changeset viewer.