首先,我是一个 JavaScript 新手,所以请多多包涵。我有以下脚本来使用 Highchart 框架绘制饼图
$(function() {
var options = {
colors: ["#66CC00", "#FF0000", "#FF6600"],
chart: {
renderTo: 'container',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: true
},
title: {
text: 'Host Status'
},
tooltip: {
formatter: function() {
return '<b>' + this.point.name + '</b>: ' + this.total;
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#000000',
connectorColor: '#000000',
formatter: function() {
return '<b>' + this.point.name + '</b>';
}
}
}
},
series: [{
type: 'pie',
name: 'service status',
data: []
}]
}
var chart;
options.series.data.push('['
Service Ok ', 45.0]')
$(document).ready(function() {
chart = new Highcharts.Chart(options)
});
});
我想要做的是将值series.data
作为对象数组动态加载到数组中。这里做错了什么,有没有更好的方法将数据加载到数据数组中?