예제 #1
0
파일: Table.php 프로젝트: php-yaoi/php-yaoi
 private function seriesFill()
 {
     if (self::DATA_TYPE_NAMED === $this->dataType) {
         $this->rows = Processor::create($this->rows)->combineOffset(2, 1);
     }
     foreach ($this->rows as $row) {
         $xValue = array_shift($row);
         foreach ($row as $key => $value) {
             $this->highCharts->addRow($xValue, $value, $key);
         }
     }
 }