本文主要介紹了透過php動態傳資料到highcharts的相關知識。具有很好的參考價值。下面跟著小編一起來看下吧
1:在平常工作中,在對資料進行展示的時候,是直接透過後台提供的介面來取得json串,用來展示。今天別人問怎麼在本地示範一下請求的動態資料。
2:在本機建置環境,我用的WampServer,瀏覽器開啟localhost,檔案存放在wamp/www目錄下
3:php程式碼,沒有寫與資料庫即時請求的過程。
<?php $b = array( array('name'=>'北京', 'y'=>20.2), array('name'=>'上海', 'y'=>9.6), array('name'=>'武汉', 'y'=>16.6), ); $data = json_encode($b); echo($data); ?>
4:html檔案
highcharts相關檔案自行下載。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <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"> <style> </style> <script src="jquery-1.8.3.min.js"></script> <script src="highcharts.js"></script> <script src="modules/exporting.js"></script> <script src="highcharts-plugins/highcharts-zh_CN.js"></script> </head> <body> <p id="container" style="min-width:400px;height:400px"></p> <script> $(function () { $.getJSON('http://localhost/index-1.php', function (csv) { console.log(csv) $('#container').highcharts({ chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false }, title: { text: '' }, tooltip: { pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' }, plotOptions: { pie: { allowPointSelect: true, cursor: 'pointer', dataLabels: { enabled: true, color: '#000000', connectorColor: '#000000', formatter: function() { return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %'; } } } }, series: [{ type: 'line', name: '', 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產生具有可讀性的隨機字串##########以上是詳解如何透過php動態傳數據到highcharts的詳細內容。更多資訊請關注PHP中文網其他相關文章!