我正在使用amcharts angular 5.更新所有图表属性。我使用amChartsService成功更改了属性,例如backgroundColor等。但是在使用气球时,气球颜色和背景颜色不会改变。我曾经破坏图表并重新创建它,但它不是最好的方法。我相信有更好的方法可以在那里做我的代码。
this.amChartsService.updateChart(this.currentChart, () => {
this.currentChart['balloon']['color'] = value;
});
在console.log上(this.currentChart.balloon.color);值已经更改但在图表中没有。
为什么我得到这个?这是一个应该报告的问题,还是我做错了什么?
感谢。
答案 0 :(得分:0)
在我的情况下,下面的代码段工作。
function adjustBalloonText(graphDataItem, graph){
return "something";
}
也许有效!!!