An open API service indexing awesome lists of open source software.

https://github.com/liudding/laravel-echarts

Build ECharts with laravel
https://github.com/liudding/laravel-echarts

Last synced: about 1 month ago
JSON representation

Build ECharts with laravel

Awesome Lists containing this project

README

          

# laravel echarts

Build ECharts using laravel

## Install

```
composer require ding/laravel-echarts
```

## Usage

In your php file or block:
```php
$chart = app('chart')->locale('ZH')
->addSeries([
'name' => 'Series #1',
'type' => 'line',
'data' => [1, 3, 2, 2, 4, 12, 5]
])
->addSeries([
'name' => 'Series #2',
'type' => 'line',
'data' => [3, 1, 3, 4, 2, 11, 3]
])
->xAxis(['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'])
->yAxis()
->legend() // 自动根据 series names 设置 legend
->lazy(); // 懒加载

```

In your `blade` file

```php


{!! $chart->render() !!}

```