cyd622 / laravel-admin-ext-echarts
Use Echarts in laravel-admin
Installs: 9 019
Dependents: 0
Suggesters: 0
Security: 0
Stars: 34
Watchers: 0
Forks: 11
Open Issues: 1
Language:JavaScript
Requires
- php: >=7.0.0
- encore/laravel-admin: ~1.6
Requires (Dev)
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2024-11-13 08:16:52 UTC
README
Screenshot
Installation
composer require cyd622/laravel-admin-ext-echarts php artisan vendor:publish --tag=echarts
Configuration
Open config/echarts.php
, set configurations .
[ 'view' => 'echarts::index', 'water_mark_text' => 'Cyd622@Laravel-Admin', 'theme' => 'shine', ];
view
set the viewwater_mark_text
set the watermark. if value isnull
or''
will not use watermarktheme
set the echarts theme
Usage
Add following codes in your controller :
public function index(Content $content) { $json = '[{"count_date":"03-28","fans_num":5906,"article_num":363,"forward_num":27928,"comment_num":9123,"like_num":35632},{"count_date":"03-29","fans_num":9565,"article_num":361,"forward_num":16755,"comment_num":7193,"like_num":36540}]'; $jsonArr = json_decode($json, 1); // bindData $head = [ 'count_date' => '日期', 'fans_num' => '粉丝', 'comment_num' => '评论', 'article_num' => '文章', 'forward_num' => '转发', 'like_num' => '点赞', ]; $echarts = (new Echarts('柱状图', '数据来自新浪云大数据平台')) ->setData($jsonArr) ->bindLegend($head); return $content ->header('Echarts demo') ->description('百度echarts图表展示') ->body(new Box('折线图', $echarts)); }
For more usage, please refer to the official documentation of echartsjs.
License
Licensed under The MIT License (MIT).