henryhamon / open_flash_chart forked from pullmonkey/open_flash_chart

The ruby on rails plugin for teethgrinder's Open Flash Chart (version 2)

This URL has Read+Write access

name age message
file MIT-LICENSE Thu Jul 24 08:48:52 -0700 2008 Initial commit [pullmonkey]
file README Loading commit data...
file Rakefile Thu Jul 24 08:48:52 -0700 2008 Initial commit [pullmonkey]
directory assets/
file init.rb
file install.rb
directory lib/
directory tasks/ Thu Jul 24 08:48:52 -0700 2008 Initial commit [pullmonkey]
directory test/ Fri Nov 07 10:40:19 -0800 2008 remove test app to separate it from the plugin [harryseldon]
file uninstall.rb Thu Jul 24 08:48:52 -0700 2008 Initial commit [pullmonkey]
README
OpenFlashChart
==============

1) rails testing_ofc_2
2) cd testing_ofc_2
3) script/plugin install git://github.com/pullmonkey/open_flash_chart.git
4) script/generate controller test_it
5) Add the following to the test_it_controller.rb in RAILS_ROOT/app/controllers:
class TestItController < ApplicationController
  def index
    @graph = @graph = open_flash_chart_object(600,300,"/test_it/graph_code")
  end

  def graph_code
    max = 20
    tmp = []
    10.times do |x|
      tmp << rand(max)
    end

    title = Title.new("MY TITLE")
    bar = BarGlass.new
    bar.set_values([1,2,3,4,5,6,7,8,9])
    chart = OpenFlashChart.new
    chart.set_title(title)
    chart.add_element(bar)
    render :text => chart.to_s
  end
end

6) Add the following to index.html.erb in RAILS_ROOT/app/views/test_it/:
<script type="text/javascript" src="/javascripts/swfobject.js"></script>
<%= @graph %>

7) Copy swfobject.js from the plugin's assets/ directory (will make this happen at install time later) to your 
RAILS_ROOT/public/javascripts directory
8) Copy open-flash-chart.swf from the plugin's assets/ director to your RAILS_ROOT/public/ directory
9) script/server
10) Let me know how it goes, thanks.


Example
=======

Example above and more to follow here - http://www.pullmonkey.com/projects/open_flash_chart


Copyright (c) 2008 PullMonkey, released under the MIT license