Changeset 16687
- Timestamp:
- 06/04/13 15:23:57 (11 years ago)
- Location:
- schedule
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r16683 r16687 104 104 year =this.selection.print("%Y").join("\n"); 105 105 GetData(); 106 getDate(day); 107 alert(day); 106 108 107 109 108 }); -
schedule/js/chart.js
r16686 r16687 7 7 // alert (source[i]); 8 8 GetXMLData(i, source); 9 10 9 //$('#data').append('1st'+source); 11 10 } 12 11 } 13 14 12 15 13 function GetXMLData(index, source) … … 98 96 for(row=0;row<dataSource[i].length;row++) 99 97 { 100 //rows=line[row].split(',');101 Temp[row]= dataSource[i][0];98 rows=line[row].split(','); 99 Temp[row]=rows[0]; 102 100 dataGraph[i].push(parseFloat(rows[4])||parseFloat('0')); 103 101 for(T=0;T<Temp.length;T++) … … 178 176 }) 179 177 } 180 $('#data').append(i + ": " + source[i] + ' GRAPH DATA ' + dataSource[i] + ' Time ' + Time[i]);178 //$('#data').append(i + ": " + source[i] + ' GRAPH DATA ' + dataGraph[i] + ' Time ' + Time[i]); 181 179 } 182 180
Note:
See TracChangeset
for help on using the changeset viewer.