You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use this gem but getting error. Code
Prawn::Document.generate 'chart.pdf' do |pdf|
data = {
items: {
20 => 1.99,
35 => 2.29,
15 => 4.99,
55 => 0.59
}
}
pdf.chart data, type: :point, labels: [false], formats: []
end Error:
RuntimeError: All of the items provided must be instances of Prawn::Graph::Series
from (irb):41:in `block in irb_binding'
from (irb):32
The text was updated successfully, but these errors were encountered:
I am trying to use this gem but getting error.
Code
Prawn::Document.generate 'chart.pdf' do |pdf|
data = {
items: {
20 => 1.99,
35 => 2.29,
15 => 4.99,
55 => 0.59
}
}
pdf.chart data, type: :point, labels: [false], formats: []
end
Error:
RuntimeError: All of the items provided must be instances of Prawn::Graph::Series
from (irb):41:in `block in irb_binding'
from (irb):32
The text was updated successfully, but these errors were encountered: