require "alone" require "al_graph" class GraphSampleController < AlController def action_index() ydata1 = [ 5, 3, 6, 3, 2, 5, 6 ] graph = AlGraph.new graph.set_mode( :NO_CONTENT_TYPE ) # この2行は最新版では必要ないかもしれませんが graph.set_mode( :NO_XML_DECLARATION ) # 互換性のために加えています。 graph.add_data_line(ydata1) @graph_svg = graph.draw_buffer AlTemplate.run("index.rhtml") end end