无法调用方法“实例”;未定义的

发布于 2024-10-16 03:50:13 字数 364 浏览 0 评论 0原文

当使用以下代码时;

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白衬杉格子梦 2024-10-23 03:50:13

解决了

,这是因为我在绘制条形图之前请求 fillStyle。

正确的代码;

var pvChart = new pv.Panel();
pvChart.width(200);
pvChart.height(200); 

var pvBar = pvChart.add(pv.Bar);
pvBar.data([1,2,3]);

pvChart.render();
console.log(pvBar.fillStyle());

SOLVED

it was because I was requesting the fillStyle before the bar has been drawn..

Correct code;

var pvChart = new pv.Panel();
pvChart.width(200);
pvChart.height(200); 

var pvBar = pvChart.add(pv.Bar);
pvBar.data([1,2,3]);

pvChart.render();
console.log(pvBar.fillStyle());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文