Changeset 16247


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

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16246 r16247  
    251251                                                                                                {
    252252                                                                                                        chart.addSeries({name:source[src], data:[]}); // created a series of data and add name of displayed source
    253                                                                                                         for(var DataCnt=0;DataCnt<Time.length;DataCnt++)
     253                                                                                                        for(var DataCnt=0;DataCnt<DataValue.length;DataCnt++)
    254254                                                                                                        {
    255255                                                                                                               
    256256                                                                                                                chart.series[src].addPoint({ // series[0] means index of zero in data;
    257                                                                                                                 x:Time[src][DataCnt], // Time
    258                                                                                                                 y:DataValue[src][DataCnt] // Value
     257                                                                                                                x:Time[DataCnt], // Time
     258                                                                                                                y:DataValue[DataCnt] // Value
    259259                                                                                                                })
    260260                                                                                                                //document.getElementById('data').innerHTML=Time[src][DataCnt];
Note: See TracChangeset for help on using the changeset viewer.