1 | <?php |
||
10 | trait MaterialTrait |
||
11 | { |
||
12 | /** |
||
13 | * @var Chart |
||
14 | */ |
||
15 | protected $chart; |
||
16 | |||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $axes; |
||
21 | |||
22 | /** |
||
23 | * @return Chart |
||
24 | */ |
||
25 | public function getChart() |
||
29 | |||
30 | /** |
||
31 | * @param array $axes |
||
32 | * |
||
33 | * @return $this |
||
34 | */ |
||
35 | public function setAxes($axes) |
||
41 | } |
||
42 |