Googlecharts gem - 我在哪里放置 require 'gchart'

发布于 2024-12-09 10:09:42 字数 720 浏览 1 评论 0原文

在下一页上,它介绍了如何使用 googlecharts gem

http://googlecharts.rubyforge.org/

它有一行写着“

require 'gchart'

我该把这个放在哪里?”在 gemfile 或控制器中?

编辑: 在我的视图文件中,我有:

<%
require 'gchart'
Gchart.line(:size => '200x300', 
        :title => "example title",
        :bg => 'efefef',
        :legend => ['first data set label', 'second data set label'],
        :data => [10, 30, 120, 45, 72]) 
%>

但上面不显示图像

编辑2: 该图表现在可以工作,这是我使用的代码

<% require 'gchart' %>

<img src="<%=Gchart.line(:data => [0, 40, 10, 70, 20])%>"/>

On the following page it says how to use the googlecharts gem

http://googlecharts.rubyforge.org/

It has a line that says

require 'gchart'

Where do I put this? In the gemfile or the controller?

EDIT:
In my view file I have:

<%
require 'gchart'
Gchart.line(:size => '200x300', 
        :title => "example title",
        :bg => 'efefef',
        :legend => ['first data set label', 'second data set label'],
        :data => [10, 30, 120, 45, 72]) 
%>

But the above does not display an image

EDIT 2:
The chart is now working, here is the code I used

<% require 'gchart' %>

<img src="<%=Gchart.line(:data => [0, 40, 10, 70, 20])%>"/>

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

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

发布评论

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

评论(2

爱她像谁 2024-12-16 10:09:42

您可以在 Gemfile 中指定 require 语句。请参阅Bundler 文档

gem "googlecharts", :require => "gchart"

You can specify a require statement in your Gemfile. See Bundler documentation.

gem "googlecharts", :require => "gchart"
兮子 2024-12-16 10:09:42

你必须重新启动你的服务器

You have to restart your server

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