如何将 Protovis 图表附加到特定的 HTML 标记?

发布于 2024-10-13 16:22:32 字数 239 浏览 4 评论 0原文

我有一个 id 为“chart”的 div 标签,但是如何让 Protovis 渲染该标签内的图表?

我尝试了画布方法,但没有成功。

var vis = new pv.Panel().canvas("chart").width(width).height(height)

我需要将我的 JS 代码保留在图表中作为我正在开发的框架的一部分,并且不能在 HTML 正文中包含脚本标签。

I have a div tag with id "chart" but how do I get Protovis to render the chart inside that tag?

I tried the canvas method but it did not work.

var vis = new pv.Panel().canvas("chart").width(width).height(height)

I need to keep my JS code the greates the chart as part of the framework I'm working on and can't have scripttags inside the HTML body.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

断肠人 2024-10-20 16:22:32

这在最新版本的 Protovis (3.2) 中绝对适合我:

<div id="#chart-div"></div>

var vis = new pv.Panel().canvas('chart-div')

不过请确保它是根面板

http://groups.google.com/group/protovis/browse_thread/thread/1ff9530cee6133ff

This definitely works for me in the latest version of Protovis (3.2):

<div id="#chart-div"></div>

var vis = new pv.Panel().canvas('chart-div')

Make sure its the root panel though.

http://groups.google.com/group/protovis/browse_thread/thread/1ff9530cee6133ff

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