首頁 >後端開發 >php教程 >php動態傳數據到highcharts的方法

php動態傳數據到highcharts的方法

墨辰丷
墨辰丷原創
2018-05-24 10:30:281731瀏覽

本文主要介紹了透過php動態傳資料到highcharts的相關知識。具有很好的參考價值。

1:在平常工作中,在對資料進行展示的時候,是直接透過後台提供的介面來取得json字串,用來展示。今天別人問怎麼在本地示範一下請求的動態資料。

2:在本地建置環境,我使用的WampServer,下載位址:http://xiazai.jb51.net/201703/yuanma/WampServer_2.5_jb51.rar,瀏覽器開啟localhost,檔案存放在wamp/www目錄下

#3:php程式碼,沒有寫與資料庫即時請求的過程。

<?php
 $b = array(
 array(&#39;name&#39;=>&#39;北京&#39;, &#39;y&#39;=>20.2),
 array(&#39;name&#39;=>&#39;上海&#39;, &#39;y&#39;=>9.6),
 array(&#39;name&#39;=>&#39;武汉&#39;, &#39;y&#39;=>16.6),
 );
 $data = json_encode($b);
 echo($data);
?>

4:html檔案

<!DOCTYPE HTML>
<html>
 <head>
 <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta http-equiv="x-ua-compatible" content="ie=edge">
 <link rel="icon" href="https://static.jianshukeji.com/hcode/images/favicon.ico">
 <style>
 </style>
 <script src="https://img.hcharts.cn/jquery/jquery-1.8.3.min.js"></script>
 <script src="https://img.hcharts.cn/highcharts/highcharts.js"></script>
 <script src="https://img.hcharts.cn/highcharts/modules/exporting.js"></script>
 <script src="https://img.hcharts.cn/highcharts-plugins/highcharts-zh_CN.js"></script>
 </head>
 <body>
 <p id="container" style="min-width:400px;height:400px"></p>
 <script>
 $(function () {
 $.getJSON(&#39;http://localhost/index-1.php&#39;, function (csv) {
  console.log(csv)
  $(&#39;#container&#39;).highcharts({
  chart: {
  plotBackgroundColor: null,
  plotBorderWidth: null,
  plotShadow: false
  },
  title: {
  text: &#39;&#39;
  },
  tooltip: {
  pointFormat: &#39;{series.name}: <b>{point.percentage:.1f}%</b>&#39;
  },
  plotOptions: {
  pie: {
  allowPointSelect: true,
  cursor: &#39;pointer&#39;,
  dataLabels: {
   enabled: true,
   color: &#39;#000000&#39;,
   connectorColor: &#39;#000000&#39;,
   formatter: function() {
   return &#39;<b>&#39;+ this.point.name +&#39;</b>: &#39;+ this.percentage +&#39; %&#39;;
   }
  }
  }
  },
  series: [{
  type: &#39;line&#39;,
  name: &#39;&#39;,
  data: csv,
  }]
  });
 });
 });
 </script>
 </body>
</html>

5:在這裡,引入js文件,當需要對一個相同的json字串展示為不同的圖形時,修改series裡的type屬性,同時修改highcharts裡的資料列參數plotOptions,就可以展示不同的圖形了,highcharts可顯示圖形類型。

php回傳資料格式:[{"name":"\u5317\u4eac","y":20.2},{"name":"\ u4e0a\u6d77","y":9.6},{"name":"\u6b66\u6c49","y":16.6}],當需要對請求的資料進行處理時,例如只需要其中一部分的資料時,可以在透過get請求資料時,對傳過來的陣列進行處理:

以上就是本文的全部內容,希望對大家的學習有所幫助。


相關推薦:

PHP登入session的取得 

##PHP登入session的取得 

php中bind_param()函數用法分析

#PHP

自訂函數判斷是否為Get、Post及Ajax提交的方法

################

以上是php動態傳數據到highcharts的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn