You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To construct a sparkline, you'll have to pass in a collection of `Brendt\SparkLineDay` objects. This object takes two parameters: a `count`, and a `DateTimeInterface`. You could for example convert database entries like so:
29
+
To construct a sparkline, you'll have to pass in an array of values.
40
30
41
-
```php
42
-
$days = PostVistisPerDay::query()
43
-
->orderByDesc('day')
44
-
->limit(20)
45
-
->get()
46
-
->map(fn (SparkLineDay $row) => new SparkLineDay(
47
-
count: $row->visits,
48
-
day: Carbon::make($row->day),
49
-
));
50
-
```
31
+
### Customization
51
32
52
-
In many cases though, you'll want to aggregate data with an SQL query, and convert those aggregations on the fly to `SparkLineDay` objects:
33
+
You can pick any amount of colors and the sparkline will automatically generate a gradient from them:
53
34
54
35
```php
55
-
$days = DB::query()
56
-
->from((new Post())->getTable())
57
-
->selectRaw('`published_at_day`, COUNT(*) as `visits`')
58
-
->groupBy('published_at_day')
59
-
->orderByDesc('published_at_day')
60
-
->whereNotNull('published_at_day')
61
-
->limit(20)
62
-
->get()
63
-
->map(fn (object $row) => new SparkLineDay(
64
-
count: $row->visits,
65
-
day: Carbon::make($row->published_at_day),
66
-
));
36
+
$sparkLine = (new SparkLine($days))->withColors('#4285F4', '#31ACF2', '#2BC9F4');
67
37
```
68
38
69
-
### Customization
39
+

70
40
71
-
This package offers some methods to customize the sparkline. First off, you can pick any amount of colors and the sparkline will automatically generate a gradient from them:
-**`withStrokeWidth`** will determine the stroke's width
92
-
-**`withDimensions`** will determine the width and height of the rendered SVG
93
-
-**`withMaxItemAmount`** will determine how many days will be shown. If you originally passed on more days than this max, then the oldest ones will be omitted. If the max amount is set to a number that's _higher_ than the current amount of days, then the sparkline will contain empty days. By default, the amount of given days will be used.
94
-
-**`withMaxValue`** will set the maximum value of the sparkline. This is useful if you have multiple sparklines that should all have the same scale. By default, the maximum value is determined based on the given days.
0 commit comments