我有一個名爲 「軌道」 表,它看起來像這樣:獲取統計數據,並顯示在圖表 - PHP/HighCharts
- ID,
- 名,
- 網址
- 命中
我有一個餅圖,從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
是的,就夠了。 –