バブルチャートのjsonフォーマットが必要です。 データはjson形式でデータベースから取得されました。私はjson形式でいくつかの問題があります。 HERESに私のコードとJSON形式ハイチャートバブルチャートダイナミック - jsonフォーマット
$(function() {
$.getJSON("scatter.json", function(json3) {
var chart;
chart = new Highcharts.Chart({
chart: {
type: 'bubble',
renderTo: 'container4',
plotBorderWidth: 1,
zoomType: 'xy'
},
title: {
text: 'Cost, Profit and Revenue'
},
subtitle: {
text: 'for 2012'
},
xAxis: {
gridLineWidth: 1,
title: {
style: {
fontSize: '9px',
}
},
},
yAxis: {
startOnTick: false,
endOnTick: false,
title: {
text: 'In Dollars'
},
max:500000,
min:0
},
series: [{
name: 'companyA',
data: json3[0]
}, {
name: 'companyB',
data: json3[1]
}]
});
});
});
とHERESにJSONデータ:
[[{ "月": "7月"、 "コスト": "632678"、 "利益": "457695"、 "収益": "637845"}、{"月" "8月"、 "コスト": "776344"、 "利益":356179 "、"収入 ":" 593207 "}、{"月 " 、 "Cost": "248527"、 "Profit": "70855"、 "Revenue": "532231"}、{"Month": "Oct"、 "Cost": "286024"、 "Profit": "451776" 、 "収入": "217594"}]、[{月 ":" 8月 "、"コスト ":" 776344 "、"利益 ":" 356179 "、"収入 ":" 593207 " : "月": "10月"、 "コスト": "286024"、 "利益": "9月"、 "コスト": "248527"、 "利益": "70855"、 "収入": "532231" : "451776"、 "Revenue": "217594"}]]
ありがとうございました。 –