我在向图表添加数据方面遇到了麻烦。我在将变量添加到图表之前声明变量,它表示“未定义”。我正在使用列堆积图表。
var result = entregaProg * (Math.pow(1 + taxaRend, prazo) - 1) / taxaRend;
var capital = result.toFixed(0);
graphicPR.addSeries({
name:"Seguro Poupança",
data:[capital]
},true);
我做错了什么?