PHP code example of cyd622 / laravel-admin-ext-echarts

1. Go to this page and download the library: Download cyd622/laravel-admin-ext-echarts library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

cyd622 / laravel-admin-ext-echarts example snippets



    [
        'view' => 'echarts::index',
        'water_mark_text' => 'Cyd622@Laravel-Admin',
        'theme' => 'shine',
    ];


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));

}