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

时间:2011-01-24 01:38:20

标签: javascript html charts protovis

我有一个id为“chart”的div标签但是如何让Protovis在该标签内呈现图表呢?

我尝试了canvas方法,但它没有用。

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

我需要保持我的JS代码作为我正在处理的框架的一部分,并且不能在HTML正文中包含脚本标记。

1 个答案:

答案 0 :(得分:5)

这绝对适用于最新版本的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