@@ -47,6 +47,7 @@ Livewire Charts supports out of the box the following types of charts
47
47
- Area Chart (` LivewireAreaChart ` component)
48
48
- Radar Chart (` LivewireRadarChart ` component)
49
49
- Tree Map Chart (` LivewireTreeMapChart ` component)
50
+ - Radial Chart (` LivewireRadialChart ` component)
50
51
51
52
Each one comes with its own "model" class that allows you to define the chart's data and render behavior.
52
53
- ` LivewireLineChart ` uses ` LineChartModel ` to set up data points, markers, events and other ui customizations.
@@ -55,6 +56,7 @@ Each one comes with its own "model" class that allows you to define the chart's
55
56
- ` LivewireAreaChart ` uses ` AreaChartModel ` to set up data points, events and other ui customizations.
56
57
- ` LivewireRadarChart ` uses ` RadarChartModel ` to set up data points, events and other ui customizations.
57
58
- ` LivewireTreeMapChart ` uses ` TreeMapChartModel ` to set up data blocks, events and other ui customizations.
59
+ - ` LivewireRadialChart ` uses ` RadialChartModel ` to set up data bars, events and other ui customizations.
58
60
59
61
For example, to render a column chart, we can create an instance of ` ColumnChartModel ` and add some data to it
60
62
``` php
@@ -106,6 +108,7 @@ LivewireCharts::pieChartModel();
106
108
LivewireCharts::areaChartModel();
107
109
LivewireCharts::radarChartModel();
108
110
LivewireCharts::treeMapChartModel();
111
+ LivewireCharts::radialChartModel();
109
112
```
110
113
111
114
## Enabling Interactions
@@ -247,6 +250,14 @@ for each type of chart.
247
250
| withOnBlockClickEvent(string $eventName) | Event Name that will be fired when a block of the chart is clicked |
248
251
| setDistributed(bool $distributed) | Set whether the chart uses distribution or not |
249
252
253
+ ### LivewireRadialChart
254
+
255
+ | Method | Description |
256
+ | --------------------------------------------------------------------------------| ------------------------------------------------------------------|
257
+ | addBar(string $title, double $value, string $color = null, array $extras = [ ] ) | Adds a bar to the default series |
258
+ | withOnBarClickEvent(string $eventName) | Event Name that will be fired when a bar of the chart is clicked |
259
+ | showTotal() | Show the total percetage to the graph |
260
+ | hideTotal() | Hides the total percetage to the graph |
250
261
251
262
## Advanced Usage - Integrating Scripts
252
263
0 commit comments