首先,我是一整条新版,请与我一起。 我有以下文字,利用高智能框架绘制图表。
$(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)
});
});
试图做的是,将价值动态地装入<代码>系列中。 在这里,什么是错的,将数据输入数据阵列是否有更好的办法?