PhpOffice\PhpPresentation\Shape\Chart\Type\AbstractType::addSeries PHP Метод

addSeries() публичный Метод

Add Series
public addSeries ( Series $value ) : self
$value PhpOffice\PhpPresentation\Shape\Chart\Series
Результат self
    public function addSeries(Series $value)
    {
        $this->data[] = $value;
        return $this;
    }