Changeset 16222 for schedule/Module


Ignore:
Timestamp:
05/25/13 00:40:30 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16221 r16222  
    257257                                                                                        {
    258258                                                                                                chart.addSeries({name:source[src], data:[]}); // created a series of data and add name of displayed source
    259                                                                                                 for(var DataCnt=0;DataCnt<DataValue[src].length;DataCnt++)
     259                                                                                                for(var DataCnt=0;DataCnt<DataValue.length;DataCnt++)
    260260                                                                                                {
    261261                                                                                                       
    262262                                                                                                        chart.series[src].addPoint({ // series[0] means index of zero in data;
    263                                                                                                         x:Time[src][DataCnt], // Time
    264                                                                                                         y:DataValue[src][DataCnt] // Value
     263                                                                                                        x:Time[DataCnt], // Time
     264                                                                                                        y:DataValue[DataCnt] // Value
    265265                                                                                                        })
    266266                                                                                                        //document.getElementById('data').innerHTML=Time[src][DataCnt];
Note: See TracChangeset for help on using the changeset viewer.