laravel-admin-ext-echarts maintained by huanglin88
Description
Use Echarts in laravel-admin
Author
Last update
2020/10/19 10:58
(dev-master)
License
Downloads
27
Tags
Use Echarts in laravel-admin
Screenshot

Installation
composer require huanglin88/laravel-admin-ext-echarts.git
php artisan vendor:publish --tag=echarts
Configuration
Open config/echarts.php, set configurations .
[
'view' => 'echarts::index',
'water_mark_text' => '775886653@qq.com',
'theme' => 'shine',
];
viewset the viewwater_mark_textset the watermark. if value isnullor''will not use watermarkthemeset 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).