I need to do some x /y plots in ruby for a rails app, with a log scale, does anyone know of any gems / libraries that can do this. Tom --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 2 Oct 2007, at 12:03, Tom Malone wrote:> I need to do some x /y plots in ruby for a rails app, with a log > scale, does anyone know of any gems / libraries that can do this. >gruff is pretty nice, but doesn''t do the log scale out of the box. It shouldn''t be hard to do the log bit yourself though. There''s also scruffy, but I haven''t used that one Fred --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Check out ChartDirector: http://www.advsofteng.com/ On 2 Oct, 12:03, "Tom Malone" <tomjmal...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I need to do some x /y plots in ruby for a rails app, with a log scale, does > anyone know of any gems / libraries that can do this. > Tom--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
* Tom Malone <tomjmalone-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [Oct 02. 2007 13:03]:> I need to do some x /y plots in ruby for a rails app, with a log scale, does > anyone know of any gems / libraries that can do this.gdchart (see http://raa.ruby-lang.org/project/gdchart) is quite good although no longer actively maintained. gruff (http://nubyonrails.com/pages/gruff) also look promising and its website as also an ''Other graphing software'' section. Hth, Klaus --- SUSE LINUX Products GmbH, GF: Markus Rex, HRB 16746 (AG Nürnberg) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
http://blogs.tech-recipes.com/johnny/2006/08/29/ruby-on-rails-beautiful-charts-made-easy-using-flash-with-rails-rxml-templates/ this works for me, the basic idea is generate xml on server side and use a flash program on the client to build the plot. There is also some plugins around that do the same ... but they work with the same flash library and ideas. On Oct 2, 6:03 am, "Tom Malone" <tomjmal...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I need to do some x /y plots in ruby for a rails app, with a log scale, does > anyone know of any gems / libraries that can do this. > Tom--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---