1 | <?php |
||
13 | class BarChartOptions extends \CMEN\GoogleChartsBundle\GoogleCharts\Options\BarChart\BarChartOptions |
||
14 | { |
||
15 | use MaterialTrait; |
||
16 | |||
17 | /** |
||
18 | * Whether the bars in a Material Bar Chart are vertical or horizontal. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $bars; |
||
23 | |||
24 | /** |
||
25 | * BarChartOptions constructor. |
||
26 | */ |
||
27 | public function __construct() |
||
33 | |||
34 | /** |
||
35 | * @param string $bars |
||
36 | * |
||
37 | * @return BarChartOptions |
||
38 | */ |
||
39 | public function setBars($bars) |
||
45 | } |
||
46 |