Displaying 1 result from an estimated 1 matches for "7e97a6".
Did you mean:
7e907ba6
2009 Apr 21
0
open flash chart and ajax
...following is
an example from the site
My controller code like
def dashboard
@graph =
open_flash_chart_object(600,300,"#{request_summary_graph_path}", true)
end
def draw_summary_graph
g = Graph.new
g.title( ''Users vs. Ram - 24h statistics'', ''{color: #7E97A6;
font-size: 20; }'' )
g.set_data([289,198,143,126,98,96,124,164,213,238,256,263,265,294,291,289])
etc etc.........
render :text => g.render
end
and my view (dashboard.html.erb ) like
<table width="100%" border="1" cellspacing="0" cellpadding="...