Skip to content

Commit 8bfdaa1

Browse files
committed
Updated README
1 parent aa94016 commit 8bfdaa1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ and export `livewire-charts:public`. This command will export a `vendor/livewire
2727
php artisan vendor:publish --tag=livewire-charts:public
2828
```
2929

30+
> Note: This last step can also be done using `livewire-charts:install` command in the artisan console.
31+
3032
## Requirements
3133

3234
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
4648
- Column/Multi Line Chart (`LivewireColumnChart` component)
4749
- Area Chart (`LivewireAreaChart` component)
4850
- Radar Chart (`LivewireRadarChart` component)
51+
- Tree Map Chart (`LivewireTreeMapChart` component)
4952

5053
Each one comes with its own "model" class that allows you to define the chart's data and render behavior.
5154
- `LivewireLineChart` uses `LineChartModel` to set up data points, markers, events and other ui customizations.
5255
- `LivewirePieChart` uses `PieChartModel` to set up data slices, events and other ui customizations.
5356
- `LivewireColumnChart` uses `ColumnChartModel` to set up data columns, events and other ui customizations.
5457
- `LivewireAreaChart` uses `AreaChartModel` to set up data points, events and other ui customizations.
5558
- `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.
5660

5761
For example, to render a column chart, we can create an instance of `ColumnChartModel` and add some data to it
5862
```php
@@ -101,6 +105,7 @@ LivewireCharts::multiColumnChartModel();
101105
LivewireCharts::pieChartModel();
102106
LivewireCharts::areaChartModel();
103107
LivewireCharts::radarChartModel();
108+
LivewireCharts::treeMapChartModel();
104109
```
105110

106111
## Enabling Interactions
@@ -227,6 +232,16 @@ for each type of chart.
227232
| addSeries(string $seriesName, string $title, double $value, array $extras = []) | |
228233
| withOnPointClickEvent(string $eventName) | Event Name that will be fired when a point of the chart is clicked |
229234

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+
230245
## Advanced Usage - Integrating Scripts
231246

232247
The directive `@livewireChartsScripts` adds a `script` tag that includes `public/vendor/livewire-charts/app.js`.

0 commit comments

Comments
 (0)