| 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 | * @param bool $interpolateNulls |
||
| 23 | * |
||
| 24 | * @return $this |
||
| 25 | */ |
||
| 26 | public function setInterpolateNulls($interpolateNulls) |
||
| 32 | } |
||
| 33 |