我已经实现了这个例子:http ://www.highcharts.com/demo/combo没有饼图。我想在一段时间后动态添加它。如何在 HighCharts 中动态地将图表添加到组合图表中?
问问题
433 次
2 回答
1
如果您查看演示,您会发现pie chart
不是图表,它只是一个serie
.
因此,要添加一个系列,您必须使用addSeries
传递参数 all pie serie
,如下所示。
chart.addSeries({
type: 'pie',
name: 'Total consumption',
data: [{
name: 'Jane',
y: 13,
color: '#4572A7' // Jane's color
},
{
name: 'John',
y: 23,
color: '#AA4643' // John's color
},
{
name: 'Joe',
y: 19,
color: '#89A54E' // Joe's color
}],
center: [100, 80],
size: 100,
showInLegend: false,
dataLabels: {
enabled: false
}
});
于 2012-09-03T23:38:57.873 回答
0
您可以使用charts.push
此网址中所示的http://calibrate.be/labs/exporting-highcharts-js-pdf-docx-tcpdf-and-phpword
如果你不能让这个工作,请告诉我。
编辑:您需要将图表定义var charts = [];
为全局变量。这还没有经过我的测试。
于 2012-09-03T16:36:13.930 回答