Changeset 16698 for schedule/js


Ignore:
Timestamp:
06/04/13 21:38:37 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/js/chart.js

    r16688 r16698  
    77           // alert (source[i]);
    88                GetXMLData(i, source);
     9               
    910                //$('#data').append('1st'+source);
    1011        }
     12}
     13function getDate(day){
    1114       
    12 }
    13 
    14 
    15 
    16 
     15                var days = day;
     16                return days;
     17        }
    1718
    1819function GetXMLData(index, source)
     
    3738                                displayXMLData(dataSource, source); //this will be called when the last data from the list is read
    3839                                //$('#data').append('successfully load'+source +""+dataSource);
     40                       
    3941                                }
    4042                }
    4143                else
    4244                        alert("status is " + XML.status);
     45        };
    4346       
    44         };
    4547        XML.send();
    4648}
     
    99101                Time[i] = new Array(); // Time contains the individual time for each sources.
    100102                chart.addSeries({name:source[i], data:[]}); // created a series of data and add name of displayed source       
     103               
    101104                for(row=0;row<dataSource[i].length;row++)
    102105                {
    103                         rows=line[row].split(',');
     106                        rows=dataSource[i][row].split(',');
    104107                        Temp[row]=rows[0];
    105108                        dataGraph[i].push(parseFloat(rows[4])||parseFloat('0'));
     
    181184                                })
    182185                }
    183                 //$('#data').append(i + ": " + source[i] + ' GRAPH DATA ' + dataGraph[i] + ' Time ' + Time[i]);
     186                //$('#data').append(i + ": " + source[i] + ' GRAPH DATA ' + dataSource[i] + ' Time ' + Time[i]);
    184187        }
    185188       
Note: See TracChangeset for help on using the changeset viewer.