@@ -27,6 +27,8 @@ and export `livewire-charts:public`. This command will export a `vendor/livewire
27
27
php artisan vendor:publish --tag=livewire-charts:public
28
28
```
29
29
30
+ > Note: This last step can also be done using ` livewire-charts:install ` command in the artisan console.
31
+
30
32
## Requirements
31
33
32
34
This package requires the following packages/libraries to work:
@@ -46,13 +48,15 @@ Livewire Charts supports out of the box the following types of charts
46
48
- Column/Multi Line Chart (` LivewireColumnChart ` component)
47
49
- Area Chart (` LivewireAreaChart ` component)
48
50
- Radar Chart (` LivewireRadarChart ` component)
51
+ - Tree Map Chart (` LivewireTreeMapChart ` component)
49
52
50
53
Each one comes with its own "model" class that allows you to define the chart's data and render behavior.
51
54
- ` LivewireLineChart ` uses ` LineChartModel ` to set up data points, markers, events and other ui customizations.
52
55
- ` LivewirePieChart ` uses ` PieChartModel ` to set up data slices, events and other ui customizations.
53
56
- ` LivewireColumnChart ` uses ` ColumnChartModel ` to set up data columns, events and other ui customizations.
54
57
- ` LivewireAreaChart ` uses ` AreaChartModel ` to set up data points, events and other ui customizations.
55
58
- ` LivewireRadarChart ` uses ` RadarChartModel ` to set up data points, events and other ui customizations.
59
+ - ` LivewireTreeMapChart ` uses ` TreeMapChartModel ` to set up data blocks, events and other ui customizations.
56
60
57
61
For example, to render a column chart, we can create an instance of ` ColumnChartModel ` and add some data to it
58
62
``` php
@@ -101,6 +105,7 @@ LivewireCharts::multiColumnChartModel();
101
105
LivewireCharts::pieChartModel();
102
106
LivewireCharts::areaChartModel();
103
107
LivewireCharts::radarChartModel();
108
+ LivewireCharts::treeMapChartModel();
104
109
```
105
110
106
111
## Enabling Interactions
@@ -227,6 +232,16 @@ for each type of chart.
227
232
| addSeries(string $seriesName, string $title, double $value, array $extras = [ ] ) | |
228
233
| withOnPointClickEvent(string $eventName) | Event Name that will be fired when a point of the chart is clicked |
229
234
235
+ ### LivewireTreeMapChart
236
+
237
+ | Method | Description |
238
+ | --------| -------------|
239
+ | addBlock(string $title, double $value, array $extras = [ ] ) | Adds a block to the default series|
240
+ | addSeriesBlock(string $seriesName, string $title, double $value, array $extras = [ ] ) | Adds a block to the specified series|
241
+ | withOnBlockClickEvent(string $eventName) | Event Name that will be fired when a block of the chart is clicked |
242
+ | setDistributed(bool $distributed) | Set whether the chart uses distribution or not |
243
+
244
+
230
245
## Advanced Usage - Integrating Scripts
231
246
232
247
The directive ` @livewireChartsScripts ` adds a ` script ` tag that includes ` public/vendor/livewire-charts/app.js ` .
0 commit comments