0
我面臨着HighCharts一個奇怪的問題,HighCharts呈現的問題
我的JavaScript如下
$('#chart').highcharts({
title: {
text: 'Smaple Chart'
},
subtitle: {
text: 'Jan-2014'
},
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
series: {
type: 'pie',
name: 'abcde',
data: [
["data1", 42],
["data2", 79],
["data3", 95],
["data4", 7],
["data5", 576],
["data6", 94]
]
},
plotOptions: {
pie: {
allowPointSelect: 'true',
cursor: 'pointer',
dataLabels: {
enabled: 'true',
color: '#000',
connectorColor: '#000',
format: '<b>{point.name}</b>: {point.percentage:.1f} %'
}
}
}
});
但是,圖表不會呈現。
這是我創建的JsFiddle。不知道發生了什麼問題。
致謝!這工作! – Guns