Changeset 16686


Ignore:
Timestamp:
06/04/13 15:20:33 (11 years ago)
Author:
tanio
Message:
 
Location:
schedule
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/Scheduling.php

    r16683 r16686  
    44?>
    55<table width="100%" id="TableHolder" >
    6 <?php echo $_GET['year'],'-',$_GET['month'],'-',$_GET['day'];?>
     6
    77        <tr>
    88                <td width="184" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center"  >Time</td>
  • schedule/function/function.php

    r16683 r16686  
    5858        ?>
    5959        $('#save').click(function(){
    60                 alert(getDate());
     60       
    6161       
    6262                var InputValue = [];
  • schedule/include/factdb.php

    r16684 r16686  
    22
    33       
    4 //      $con=mysql_connect("localhost","root","");
     4        //$con=mysql_connect("localhost","root","");
    55        $con=mysql_connect("localhost","scheduletest","t3stsched");
    66        mysql_select_db("sandboxschedule",$con);
  • schedule/js/chart.js

    r16685 r16686  
    1111        }
    1212}
    13 function getDate(day){
    14        
    15                 var days = day;
    16                 return days;
    17         }
     13
    1814
    1915function GetXMLData(index, source)
     
    3228                        //alert("request ok");
    3329                        line=XML.responseText.split('\n');
    34                         dataSource.push(new Array());
    35             n = dataSource.length-1;
    36                 for(row=0;row<line.length;row++)
    37                                 {
    38                         rows=line[row].split(',');
    39                                 dataSource[n].push(parseFloat(rows[4])||parseFloat('0'));
    40                                 }
     30                        dataSource.push(line);
    4131                        if (dataSource.length == source.length)
    4232                                {
     
    9484        };
    9585        //This function splits the lines of data per data source
    96         //var dataGraph = new Array(source.length);
     86        var dataGraph = new Array(source.length);
    9787        var Time = new Array(source.length);
    9888        var Temp = new Array();
     
    10393        for (i=0; i<source.length; i++)
    10494        {
    105                 //dataGraph[i] = new Array(); //dataGraph contains the individual points for each source i
     95                dataGraph[i] = new Array(); //dataGraph contains the individual points for each source i
    10696                Time[i] = new Array(); // Time contains the individual time for each sources.
    10797                chart.addSeries({name:source[i], data:[]}); // created a series of data and add name of displayed source       
     
    110100                        //rows=line[row].split(',');
    111101                        Temp[row]=dataSource[i][0];
    112                         //dataGraph[i].push(parseFloat(rows[4])||parseFloat('0'));
     102                        dataGraph[i].push(parseFloat(rows[4])||parseFloat('0'));
    113103                        for(T=0;T<Temp.length;T++)
    114104                        {
     
    181171                       
    182172                }
    183                 for(Graph=0;Graph<dataSource[i].length;Graph++)
     173                for(Graph=0;Graph<dataGraph[i].length;Graph++)
    184174                {                                               
    185175                                chart.series[i].addPoint({ // series[0] means index of zero in data;
    186176                                x:Time[i][Graph], // Time
    187                                 y:dataSource[i][Graph] // Value
     177                                y:dataGraph[i][Graph] // Value
    188178                                })
    189179                }
Note: See TracChangeset for help on using the changeset viewer.