本文介绍了在 Rails 4.0 中使用 Chartkick的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在 rails 4.0 中使用 Chartkick.
How can i use Chartkick in rails 4.0.
在 Gem 中我添加了:
in Gem I added:
宝石图表"
在我看来,例如我添加了这个:
and in my view for example i added this:
<%= pie_chart({"Football" => 10, "Basketball" => 5}) %>
但页面只显示正在加载...生成的 HTML:
but the page only show Loading...generated Html:
<div id="chart-1" style="height: 300px; text-align: center; color:
#999; line-height: 300px; font-size: 14px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Arial, Helvetica, sans-serif;"> Loading... </div> <script type="text/javascript"> new Chartkick.PieChart("chart-1", {"Football":10,"Basketball":5}, {}); </script>
推荐答案
请务必在图表之前包含 JavaScript 文件.
Be sure to include the JavaScript files before the charts.
<%= javascript_include_tag "//www.google.com/jsapi", "chartkick" %>
这篇关于在 Rails 4.0 中使用 Chartkick的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!