我正在使用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