Yeah, it's there. See screen shot:
http://picasaweb.google.com/lh/photo/vvLNtQtHboUMsega3b6iKA?feat=directlink
I have copied all of the files to the locations specified in the README.
And here are the screen shots for /lib and /views:
http://picasaweb.google.com/lh/photo/iU0OzgjbnWEAJRfWaMIS6Q?feat=directlink
http://picasaweb.google.com/lh/photo/gTRZI0Kc7O4IkRLpKYl4kw?feat=directlink
And below is an example XML of one of my charts:
xml = Builder::XmlMarkup.new
xml.graph(
:showValues => '0',
:decimalPrecision => '0',
:formatNumberScale => '0',
:showhovercap => '1',
:baseFontSize => '11',
:canvasBgColor => 'EEEEEE',
:canvasBorderThickness => '0',
:canvasBorderColor => 'FFFFFF',
:canvasBaseDepth => '0',
:canvasBgDepth => '0',
:bgColor => 'FFFFFF',
:divLineColor => 'FFFFFF',
:divLineThickness => '1',
:showColumnShadow => '0',
:exportEnabled => '1',
:exportAtClient => '0',
:exportHandler => 'fusioncharts/fc_exporter/index',
:exportFormats =>'JPG|PDF',
:exporttargetwindow => '_self',
:exportAction => 'download'
) do
xml.categories do
@data.first[:data].each { |month| xml.category(:name => month[:month].strftime("%b")) }
end
@data.each do |range|
level = case range[:name]
when :low; 10
when :medium; 20
when :high; 30
end
xml.dataset(:seriesname => range[:name].to_s, :color => color_level(level, 30)) do
range[:data].each { |month| xml.set(:value => month[:count]) }
end
end
end
Let me know if there is any additional information that would be helpful.
thanks.