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 | * @param float $areaOpacity |
||
22 | * |
||
23 | * @return $this |
||
24 | */ |
||
25 | public function setAreaOpacity($areaOpacity) |
||
31 | } |
||
32 |