I am following instructions in this page
http://googlecharts.rubyforge.org/
Here is my code
Gchart.line(:data => data,:axis_with_labels => ["x"],:axis_labels => ["0","15","30","45","60"], :format => 'file', :filename => "/path/to/file/#{stamp}.png")
I expect a chart with labels in x axis but I got this chart
Something I am missing in here?
UPDATE:
I fixed this issue with another extra pair of [] like this
Gchart.line(:data => data,:axis_with_labels => ["x"],:axis_labels => [["0","15","30","45","60"]], :format => 'file', :filename => "/path/to/file/#{stamp}.png")