本文主要介紹了透過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('name'=>'北京', 'y'=>20.2), array('name'=>'上海', 'y'=>9.6), array('name'=>'武汉', 'y'=>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('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登入session的取得
#PHP
自訂函數判斷是否為Get、Post及Ajax提交的方法################
以上是php動態傳數據到highcharts的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!