Wicked_pdf - Googlevisualr圆环图无效

时间:2015-02-13 10:31:31

标签: ruby-on-rails-3.2 google-visualization wicked-pdf

我正在使用rails 3应用程序并使用pieHole选项显示圆环图。它显示在我的网页上,但它不适用于PDF。我想在PDF文件上打印圆环图。谁知道问题是什么?请帮忙。

对于PDF,我使用的是wicked_pdf gem。

的Gemfile

gem 'wkhtmltopdf-binary'
gem 'wicked_pdf'
gem "google_visualr", ">= 2.1"

model.rb

  opts = { :title => chart_name, fontName: 'Open Sans', :legend => 'bottom', colors: IM_CHART_COLORS, pieHole: 0.4 }
  if !interactive.present?
    chart = GoogleVisualr::Interactive::PieChart.new(data_table, opts)
  else
    chart = GoogleVisualr::Image::PieChart.new(data_table, opts)
  end

0 个答案:

没有答案