我是HighCharts的新手,在Angular 应用程序中实现了HighCharts。我正在尝试使用piechart,下面是代码
chartOptions= {
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: 'pie'
},
title: {
text: 'Browser market shares at a specific website, 2014'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
accessibility: {
point: {
valueSuffix: '%'
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
colors: pieColors,
dataLabels: {
enabled: true,
format: '<b>{point.name}</b><br>{point.percentage:.1f} %',
distance: -50,
filter: {
property: 'percentage',
operator: '>',
value: 4
}
}
}
},
series: [{
name: 'Share',
data: [
{ name: 'Chrome', y: 61.41 },
{ name: 'Internet Explorer', y: 11.84 },
{ name: 'Firefox', y: 10.85 },
{ name: 'Safari', y: 4.18 },
{ name: 'Other', y: 7.05 }
]
}]
});
在这里我想更新系列数据(例如名称:“Edge”)通过循环调用特定函数。那么我如何才能实现这一点。有人能在这里帮助我吗
2条答案
按热度按时间nx7onnlm1#
@csk这里您可以使用
update
函数更新系列数据。在HTML文件中
在Ts文件中
参考:https://jsfiddle.net/cmk72dpe/
ffvjumwh2#
我不明白你所说的“添加循环”是什么意思,但这里有一种方法来添加单个数据点,然后更新图表后。
在TS中
HTML格式