我試圖用highchart網站給出的例子。但是,當我使用它,我得到的是一個空白的HTML頁面。有人請幫我看看代碼。我不明白爲什麼代碼沒有正確加載,請告訴我,如果我要補充額外的東西到這一點,請不要讓我知道如何使用PHP數組,使該圖的工作也Highcharts沒有顯示任何東西只是空白的HTML頁面
<html>
<head>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script>
$(function() {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: 'Browser market shares at a specific website, 2010'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage}%</b>',
percentageDecimals: 1
},
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: 'pie',
name: 'Browser share',
data: [
['Firefox', 45.0],
['IE', 26.8],
{
name: 'Chrome',
y: 12.8,
sliced: true,
selected: true
},
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]
}]
});
});
});
</script>
</head>
<body>
<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
</body>
</html>
你知道如何從MySQL中使用php的值,並將其傳遞到此?來自mysql的數據格式如下:24 Afghanistanisthan 6 Iran 11 KSA 21 Pakistan 14 UAE – user2038580 2013-03-02 01:53:36
@ user2038580 [this](http://blueflame-software.com/blog/using-highcharts-with- php-and-mysql /)看起來像一個很好的資源 – mgibsonbr 2013-03-02 01:55:29
看到我將使用的查詢是: SELECT SUM(score),國籍 FROM詳情 GROUP BY國籍 限制0,30我想知道如何使用在javascript中從這裏檢索的值。 – user2038580 2013-03-02 01:57:37