Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | trait InterpolateNullsTrait |
||
9 | { |
||
10 | /** |
||
11 | * Whether to guess the value of missing points. If true, it will guess the value of any missing data based on |
||
12 | * neighboring points. If false, it will leave a break in the line at the unknown point. |
||
13 | * This is not supported by Area charts with the isStacked: true/'percent'/'relative'/'absolute' option. |
||
14 | * |
||
15 | * Default: false |
||
16 | * |
||
17 | * @var bool |
||
18 | */ |
||
19 | protected $interpolateNulls; |
||
20 | |||
21 | /** |
||
22 | * @return $this |
||
23 | */ |
||
24 | 1 | public function setInterpolateNulls(bool $interpolateNulls) |
|
31 |