主頁(yè) > 知識(shí)庫(kù) > laravel5.5添加echarts實(shí)現(xiàn)畫(huà)圖功能的方法

laravel5.5添加echarts實(shí)現(xiàn)畫(huà)圖功能的方法

熱門(mén)標(biāo)簽:青白江地圖標(biāo)注 智能電話(huà)機(jī)器人好公司門(mén)薩維 沛縣400電話(huà)辦理 德陽(yáng)中江如何申請(qǐng)400開(kāi)頭電話(huà) 江蘇電商外呼系統(tǒng)運(yùn)營(yíng)商 聊城電話(huà)外呼系統(tǒng)公司 辦理重慶400電話(huà) 銅川電話(huà)機(jī)器人價(jià)格 AI電話(huà)機(jī)器人OEM貼牌

一、下載echarts

我用的是3.X版本,下載地址

二、在頁(yè)面中引入echarts

script type="text/javascript" src="/js/echarts.min.js">/script>

我把下載下來(lái)的echarts.min.js放在了public/js/目錄下

三、通過(guò)post的請(qǐng)求獲取數(shù)據(jù)并在頁(yè)面展示

1.添加路由

Route::get('/test2', 'CunliangController@test2')->name('test2');

Route::post('/odata', 'CunliangController@odata');

/test2用來(lái)展示echarts的界面,/odata獲取數(shù)據(jù)。

2.控制器添加代碼

public function test2()
{
 return view('cunliang.test2');
}
public function odata()
{
 //返回最近七天的數(shù)據(jù)
 $data = Cunliang::where("file_type", "O")->latest()
     ->take(7)
     ->get();

 return array_reverse($data->toArray(),false);

}

3.頁(yè)面blade模板添加

div id="contain" style="width: 950px;height:400px;">/div>

4.添加js

script type="text/javascript">
 var names = [];
 var ttls = [];
 function getData()
 {
  $.post("{{ url('/odata') }}", {
   "_token": "{{ csrf_token() }}"
  }, function(data) {
   $.each(data, function(i, item) {
    names.push(item.update_date);
    ttls.push(item.space_size);
   });
  });
 }
 getData();
 function chart() {
  var myChart = echarts.init(document.getElementById("contain"));


  option = {
   title : {
    text: 'O域數(shù)據(jù)最近7天更新情況'
   },
   tooltip : {
    trigger: 'axis'
   },
   legend: {
    data:['數(shù)據(jù)大小']
   },
   toolbox: {
    show : true,
    feature : {
     mark : {show: true},
     dataView : {show: true, readOnly: false},
     magicType : {show: true, type: ['line', 'bar']},
     restore : {show: true},
     saveAsImage : {show: true}
    }
   },
   calculable : true,
   xAxis : [
    {
     axisLine: {
      lineStyle: { color: '#333' }
     },
     axisLabel: {
      rotate: 30,
      interval: 0
     },
     type : 'category',
     boundaryGap : false,
     data : names // x的數(shù)據(jù),為上個(gè)方法中得到的names
    }
   ],
   yAxis : [
    {
     type : 'value',
     axisLabel : {
      formatter: '{value} M'
     },
     axisLine: {
      lineStyle: { color: '#333' }
     }
    }
   ],
   series : [
    {
     name:'數(shù)據(jù)大小',
     type:'line',
     smooth: 0.3,
     data: ttls // y軸的數(shù)據(jù),由上個(gè)方法中得到的ttls
    }
   ]
 };
 // 使用剛指定的配置項(xiàng)和數(shù)據(jù)顯示圖表。
 myChart.setOption(option);
 }
 setTimeout('chart()', 1000);
/script>

其中g(shù)etdata通過(guò)post得到的數(shù)據(jù)為echart準(zhǔn)備數(shù)據(jù),function chart()為echart的數(shù)據(jù)展示形式,可以根據(jù)自己需求在官網(wǎng)查找。

參考資料

使用laravel和ECharts實(shí)現(xiàn)折線(xiàn)圖效果

官網(wǎng)教程

以上這篇laravel5.5添加echarts實(shí)現(xiàn)畫(huà)圖功能的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • tp5修改(實(shí)現(xiàn)即點(diǎn)即改)
  • PHP+jQuery實(shí)現(xiàn)即點(diǎn)即改功能示例
  • jQuery實(shí)現(xiàn)checkbox即點(diǎn)即改批量刪除及中間遇到的坑
  • JavaScript中全選、全不選、反選、無(wú)刷新刪除、批量刪除、即點(diǎn)即改入庫(kù)(在yii框架中操作)的代碼分享
  • Laravel+Layer實(shí)現(xiàn)圖片上傳功能(整理篇)
  • Laravel框架實(shí)現(xiàn)發(fā)送短信驗(yàn)證功能代碼
  • laravel框架關(guān)于搜索功能的實(shí)現(xiàn)
  • laravel框架上傳圖片實(shí)現(xiàn)實(shí)時(shí)預(yù)覽功能
  • 使用Laravel中的查詢(xún)構(gòu)造器實(shí)現(xiàn)增刪改查功能
  • Laravel 6 將新增為指定隊(duì)列任務(wù)設(shè)置中間件的功能
  • Laravel框架實(shí)現(xiàn)即點(diǎn)即改功能的方法分析

標(biāo)簽:烏魯木齊 三亞 鷹潭 山南 濟(jì)寧 赤峰 南寧 迪慶

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《laravel5.5添加echarts實(shí)現(xiàn)畫(huà)圖功能的方法》,本文關(guān)鍵詞  laravel5.5,添加,echarts,實(shí)現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《laravel5.5添加echarts實(shí)現(xiàn)畫(huà)圖功能的方法》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于laravel5.5添加echarts實(shí)現(xiàn)畫(huà)圖功能的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章