xuanchen/laravel-echarts

Build ECharts using laravel

1.0.3 2022-09-15 00:49 UTC

This package is auto-updated.

Last update: 2024-05-15 04:11:17 UTC


README

Build ECharts using laravel

Install

composer require xuanchen/laravel-echarts

Usage

In your php file or block:

$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

<div style="width: 500px;height:400px;">
    {!! $chart->render() !!}
</div>