我想從html輸入中獲取值並將這些值插入到JSON系列數據中。HTML輸入值到餅圖系列數據(HighCharts)
下面是用靜態數據加載餅圖的函數,但我希望每次加載頁面時都從我的html輸入中獲取值,並讓這些值填充餅圖。
我是JSON的新手,所以任何想法都將不勝感激。
謝謝!
$(function() {
$('#user_bills_pie').highcharts({
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: ''
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: false,
color: '#000000',
connectorColor: '#000000',
format: '{point.name}',
}
}
},
series: [{
type: 'pie',
name: 'Monthly Bills',
data: [
['Cell Phone', 45.0],
['Mortgage', 26.8],
['Credit Card', 8.5],
['Cable/Internet', 6.2],
['Electric', 0.7]
]
}]
});
});