如何使用 googlecharts gem?
我正在尝试使用 googlecharts (http://googlecharts.rubyforge.org/) gem。您将生成图表的代码放在哪里(例如 Gchart.line(:data => [0, 40, 10, 70, 20]) )
?你如何显示它?
谢谢
I am trying to use the googlecharts (http://googlecharts.rubyforge.org/) gem. Where do you put the code to generate a chart (like Gchart.line(:data => [0, 40, 10, 70, 20]) )
? How do you display it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调用
Gchart.line()
仅返回一个字符串,该字符串是相应 Google 图表图像的 URL。例如Gchart.line(:data => [0, 40, 10, 70, 20])
返回"http://chart.apis.google.com/chart?chd= s:AjI9R&cht=lc&chs=300x200&chxr=0,0,70"
。因此,要在页面上显示图表,您需要使用此生成的 URL 的来源创建一个图像标记。您可以直接从视图调用 Gchart 或在控制器中设置变量。
例如:
控制器
@line_chart = Gchart.line(:data => [0, 40, 10, 70, 20])
查看
<%= image_tag(@line_chart) %>
这将生成一个图像标签,如下所示:
。
Calling
Gchart.line()
simply returns a string that is the URL for the corresponding Google Chart image. E.g.Gchart.line(:data => [0, 40, 10, 70, 20])
returns"http://chart.apis.google.com/chart?chd=s:AjI9R&cht=lc&chs=300x200&chxr=0,0,70"
.So, to display a chart on your page, you will need to create an image tag with a source of this generated URL. You can call Gchart directly from the view or set up the variable in your controller.
For example:
Controller
@line_chart = Gchart.line(:data => [0, 40, 10, 70, 20])
View
<%= image_tag(@line_chart) %>
This will generate an image tag like so:
<img src="http://chart.apis.google.com/chart?chd=s:AjI9R&cht=lc&chs=300x200&chxr=0,0,70"/>
.所提供的链接上的文档在用例方面信息不多,但我几乎肯定您需要在视图中进行该调用。类似于:
将输出创建图表所需的 html。
The documentation on the link provided isn't very informative in regards to use cases, but I'm almost positive that you need to make that call in a view. Something like:
will output the html required to create the chart.