私は "トラック" と呼ばれるテーブルを持って、それは次のようになります。統計情報を取得し、チャートにそれを表示 - PHP/HighCharts
- ID、
- 名、
- URL
- ヒット
私はhighchartsから、円グラフを持って、コードは次のようになります。
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'chart',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: 'Where users came from, total'
},
tooltip: {
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %';
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: false
},
showInLegend: true
}
},
credits: {
enabled: false
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
['Firefox.com', 45.0],
['Default.com', 26.8],
['MSN', 12.8],
['Google.com', 8.5],
['Yahoo.com', 6.2],
['Others', 0.7]
]
}]
});
});
私の質問ですが、私は「トラック」テーブルからデータ(ヒット)、および(名)など円グラフの出力を得ることができる方法:
「名前」、「ヒット」を
最後に、ヒット数を%に変換します。
チャートを再描画する予定ですか?(ページの読み込み時に)一度生成すれば十分ですか? – roselan
はい、それで十分です。 –