Changeset 15908 for schedule/Module


Ignore:
Timestamp:
05/21/13 15:47:42 (12 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r15907 r15908  
    9797                                                                                                        var cst=Time[c].split(':');
    9898                                                                                                        colon[c]=cst[0];
    99                                                                                                         Temp[c]=(parseInt(cst[1]/60*100)||parseInt("0"));
     99                                                                                                        Temp[c]=(parseFloat(cst[1]/60*100)||parseFloat("0"));
    100100                                                                                                        for(var i=1;i<colon.length;i++)
    101101                                                                                                        {
    102102                                                                                                                var st=colon[i].split('T');
    103                                                                                                                 arrTime[i]=(parseInt(st[1])||parseInt("0"));
     103                                                                                                                arrTime[i]=(parseFloat(st[1])||parseFloat("0"));
    104104                                                                                                        }
    105105                                                                                                }
    106106                                                                                        //arr[row]="["+f[4]+"]";       
    107                                                                                         newline[row]=(parseFloat(f[4])||parseInt("0"));
     107                                                                                        newline[row]=(parseFloat(f[4])||parseFloat("0"));
    108108                                                                                        var s=[];
    109109                                                                                        for(var c=0;c<newline.length;c++)
     
    142142                                                                        newdata=s;
    143143                                                                        newtime=finaldata;
    144                                                                         //document.getElementById('data').innerHTML=source;
     144                                                                        document.getElementById('data').innerHTML=finaldata;
    145145                                                                       
    146146                                                                        options.series.push({
    147147                                                                       
    148                                                                                 data:for(var i=0; i<arrTime.length;i++)
    149                                                                         {
    150                                                                                 newline[i];
    151                                                                         },
     148                                                                                data:[finaldata]
    152149                                                                        });                                             
    153150                                                                        var chart = new Highcharts.Chart(options);
Note: See TracChangeset for help on using the changeset viewer.