Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Series extends \CMEN\GoogleChartsBundle\GoogleCharts\Options\Series |
||
12 | { |
||
13 | use LineWidthTrait; |
||
14 | |||
15 | use PointTrait; |
||
16 | |||
17 | /** |
||
18 | * The description of the series to appear in the chart legend. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $labelInLegend; |
||
23 | |||
24 | /** |
||
25 | * @return $this |
||
26 | */ |
||
27 | public function setLabelInLegend(string $labelInLegend) |
||
34 |