-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathDatasetClass.php
70 lines (52 loc) · 1.44 KB
/
DatasetClass.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
namespace Akaunting\Apexcharts\Support;
use Illuminate\Support\Collection;
class DatasetClass
{
public string $name = 'Undefined';
public string $type = '';
public array $data = [];
public array $options = [];
public string $undefinedColor = '#22292F';
public function __construct(string $name, string $type, array $data)
{
$this->name = $name;
$this->type = $type;
$this->data = $data;
return $this;
}
public function type(string $type): DatasetClass
{
$this->type = $type;
return $this;
}
public function data(array|Collection $data): DatasetClass
{
if ($data instanceof Collection) {
$data = $data->toArray();
}
$this->data = $data;
return $this;
}
public function options(array|Collection $options, bool $overwrite = false): DatasetClass
{
if ($overwrite) {
$this->options = $options;
} else {
$this->options = array_replace_recursive($this->options, $options);
}
return $this;
}
/**
* Matches the data of the dataset with the given number.
*/
public function matchdata(int $data, bool $strict = false): void
{
while (count($this->data) < $data) {
array_push($this->data, 0);
}
if ($strict) {
$this->data = array_slice($this->data, 0, $data);
}
}
}