| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | trait AreaOpacityTrait |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The default opacity of the colored area under an area chart series, where 0.0 is fully transparent and 1.0 is |
||
| 12 | * fully opaque. To specify opacity for an individual series, set the areaOpacity value in the series property. |
||
| 13 | * |
||
| 14 | * Default: 0.3 |
||
| 15 | * |
||
| 16 | * @var float |
||
| 17 | */ |
||
| 18 | protected $areaOpacity; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return $this |
||
| 22 | */ |
||
| 23 | public function setAreaOpacity(float $areaOpacity) |
||
| 30 |