1 | <?php |
||
8 | class AdvancedAnimation extends Animation |
||
9 | { |
||
10 | /** |
||
11 | * Determines if the chart will animate on the initial draw. If true, the chart will start at the baseline and |
||
12 | * animate to its final state. |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $startup; |
||
17 | |||
18 | /** |
||
19 | * @param bool $startup |
||
20 | * |
||
21 | * @return $this |
||
22 | */ |
||
23 | public function setStartup($startup) |
||
29 | } |
||
30 |