1 | <?php namespace rtens\domin\delivery\web\renderers\charting\data; |
||
5 | class ScatterDataSet { |
||
6 | |||
7 | /** @var string */ |
||
8 | private $label; |
||
9 | |||
10 | /** @var ScatterDataPoint[] */ |
||
11 | private $dataPoints; |
||
12 | |||
13 | /** @var Color|null */ |
||
14 | private $color; |
||
15 | |||
16 | /** |
||
17 | * @param ScatterDataPoint[] $dataPoints |
||
18 | * @param string $label |
||
19 | * @param Color $color |
||
20 | */ |
||
21 | public function __construct(array $dataPoints, $label = '', Color $color = null) { |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getLabel() { |
||
33 | |||
34 | /** |
||
35 | * @return ScatterDataPoint[] |
||
36 | */ |
||
37 | public function getDataPoints() { |
||
40 | |||
41 | /** |
||
42 | * @return null|Color |
||
43 | */ |
||
44 | public function getColor() { |
||
47 | } |