我需要包括我的JSON字符串輸出到highcharts --pie圖表類 但圖表不正確加載加載JSON字符串中highcharts餅圖
這是我的JSON字符串
var json = {"{\"name\":\"BillToMobile\"}":{"y":2.35},"{\"name\":\"Telenav\"}":{"y":13.59}}
Highcharts.chart('container', {
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: 'pie'
},
title: {
text: ''
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
format: '<b>{point.name}</b>: {point.percentage:.1f} %',
style: {
color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
}
}
}
},
series: [{
name: 'Brands',
colorByPoint: true,
data: json
}]
});
下面是我在加載這個jsonstring時得到的圖表。 任何人都可以幫助我,因爲我是新手。感謝提前。
您的JSON是有效的,但它不包含您認爲它的值。 – evolutionxbox