无法调用方法“实例”;未定义的
当使用以下代码时;
var pvChart = new pv.Panel();
pvChart.width(200);
pvChart.height(200);
var pvBar = pvChart.add(pv.Bar);
pvBar.data([1,2,3]);
console.log(pvBar.fillStyle());
我收到错误;
无法调用方法“实例” 未定义
它指的是pvBar.fillStyle()
。使用这个我想检索栏 fillStyle 供以后使用。谁能告诉我这个错误的原因以及如何解决这个问题?
When using the following code;
var pvChart = new pv.Panel();
pvChart.width(200);
pvChart.height(200);
var pvBar = pvChart.add(pv.Bar);
pvBar.data([1,2,3]);
console.log(pvBar.fillStyle());
I get the error;
Cannot call method 'instance' of
undefined
It refers to the pvBar.fillStyle()
. Using this I want to retrieve the bars fillStyle for later use. Can anyone tell me the reason of this error and how to solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了
,这是因为我在绘制条形图之前请求 fillStyle。
正确的代码;
SOLVED
it was because I was requesting the fillStyle before the bar has been drawn..
Correct code;