この記事では主に、phpを介してハイチャートにデータを動的に転送するための関連知識を紹介します。非常に良い基準値を持っています。
1: 日常業務では、データを表示するときに、表示用のバックグラウンドによって提供されるインターフェイスを通じて json 文字列を直接取得します。今日、誰かが、要求された動的データをローカルでデモンストレーションする方法を尋ねました。
2: ローカルで環境をセットアップします。WampServer を使用します。ダウンロード アドレス: http://xiazai.jb51.net/201703/yuanma/WampServer_2.5_jb51.rar、ブラウザで localhost が開き、ファイルが保存されますwww ディレクトリ内の wamp/
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文字列を別のグラフィックとして表示する必要がある場合は、type属性の系列を変更しますを変更し、同時に highcharts のデータ列パラメーター plotOptions を変更すると、異なるグラフィックスを表示したり、highcharts でグラフィックス タイプを表示したりできます。
phpはデータ形式を返します: [{"name":"u5317u4eac","y":20.2},{"name":"u4e0au6d77","y":9.6},{"name":" u6b66u6c49","y":16.6}]、要求されたデータを処理する必要がある場合、たとえばデータの一部のみが必要な場合、get を通じてデータを要求するときに、渡された配列を処理できます:
以上がこの記事の全内容です、皆様の学習のお役に立てれば幸いです。
関連する推奨事項:
PHPカスタム関数Get か Post かを判断すると Ajax 送信メソッド
以上がPHPでデータを動的にハイチャートに転送する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。