similar to: I''ve found a decent ruby + rails graphing solution!!

Displaying 20 results from an estimated 10000 matches similar to: "I''ve found a decent ruby + rails graphing solution!!"

2006 Jul 05
1
Need some Gruff graphing help - custom dimensions?
I''ve been working with Gruff to do all my apps graphing and such etc. I love it but I''m just having a hard time customizing the graphs, but this is perhaps due to my inability to comprehend the online RDocs. What I want to do is adjust the width / heights of my graphs or at the VERY LEAST the heights. It seems that if you scale a graph anywhere below 400-450px it is pretty
2006 May 02
0
3D graphing Libraries
Unfortunately a number of our clients need extensive reporting capabilities. There are a number of Java 3d graphing libraries like the link below and PHP offerings out there. http://big.faceless.org/products/graph/index.jsp .Net has its new report viewer control for ASP.net 2.0 which allows you to create 2d/3d reports containing pie charts, line graphs etc. Whats cool about this control is
2006 May 25
2
Have a quick Gruff Graphing question
I have some graphs and everything is working great, but I''d like to set a minimum height so to speak on the vertical scale. Is there a method to do that with Gruff? I''ve tried looking through the docs but can''t seem to get it to work. So for example, if the highest datapoint in my graph was say 500, is it possible to have the minimum vertical scale on the left set
2008 Sep 25
1
Spider Charts and Gruff: THE JOY OF GRAPHING
I hope this day finds you well. I need to generate Spider charts (aka radar charts) , and am using Gruff to do so. How can I show lines and axis numbers on a Spider chart? Here''s what I''m trying to make: http://img.skitch.com/20080925-m573hhdy4n4x6i92s17knjqjeg.jpg How can I have those 0 - 100 numbers, and the concentric cirles in the graph? Joe -- Posted via
2006 Jul 22
2
Gruff Graphs
Well, I''m trying to generate graphs using gruff, but I''m having problemns. I use, require_gem ''gruff'' then when I run g = Gruff::Line.new(475) I get uninitialized constant Gruff ///// c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:100:in `const_missing''
2006 Mar 23
1
Graphing library?
Hello everyone, I''m looking to produce some graphs broadly like the ones shown here: http://www.dotnetcharting.com/gallery/List.aspx?gal=6 No prize for guessing what type of app it is... This particular graphing library is .NET-specific, but as you can see the results it produces are really nice. More than likely, they''re several notches above what I''ll be able to
2006 Mar 28
1
graphing solutions
Hi all, This might be OT. Wondering what are available charting solutions that work well with Ruby on Rails. I''ve seen reference to a few but they all seem to rely on integration with a program written in another language (requiring a seperate process per chart), Perl''s GD module for instance. Is there a 100% Ruby charting library that is freely available? Thanks, Dave
2006 Jun 05
1
Strange problem with Gruff not always displaying graph
Hello, I am having a strange problem with Gruff not always displaying the graph on the page. On some pages, the graph is displayed fine. On others, however, I just get the number relating to the id of the requested item - in my case, report. Does anyone know how to solve this problem? I have the following in my controller: def create_graph g = Gruff::Line.new(290) g.title =
2007 Feb 28
1
hi guys problem with running gruff
Hi guys i am pretty much a newbie to rails and tried to install gruff and run the example given in home page for gruff i am using ubuntu and dapper. first i got two errors when i used this example #!/usr/bin/ruby require ''rubygems'' require ''gruff'' g = Gruff::Line.new g.title = "My Graph" g.data("Apples", [1, 2, 3, 4, 4, 3])
2019 Jan 28
2
Centos 7 and backup solution
Il 28/01/19 04:56, Nataraj ha scritto: > My primary backups are done with? dar, http://dar.linux.free.fr/ > > I also periodically do backups in other formats such as rsync and tar > for redundancy. > > Nataraj > > > > _______________________________________________ > CentOS mailing list > CentOS at centos.org >
2006 Feb 23
11
Can''t use Gruff with Rails
Hello list, I''m having a problem getting Gruff working with Rails on a Windows XP box. I installed RMagick, then Gruff via the win32 gem, and it seemed to go OK. From irb, I can do the following - require ''rubygems'' ##### This returns ''false'', but seems to work OK - require ''gruff'' ####### Ditto - g = Gruff::Bar.new etc., and I get
2015 May 06
3
Backup PC or other solution
m.roth at 5-cent.us wrote: > Alessandro Baggi wrote: >> I list, >> I'm new with backup ops and I'm searching a good system to accomplish >> this work. I know that on centos there are bacula and amanda but they are >> too tape oriented. Another is that they are very powerfull but more complex. >> I need a solution for small office for disk storage and I
2006 Apr 14
0
Gruff on Windows
Has anyone achieved a stable deployment of Gruff with Rmagick on Windows? I''ve been playing around with this on Instant Rails and after installing the RMagick win 32 gem (local gem install as per instructions on web) and then Gruff on top of that. I did a test controller method that rendered the fruit pie chart as per the examples on the gruff site. This worked. However, when I refreshed
2004 Mar 01
1
[OT] DNSmasq - a simple solution for DNS and DHCP
Hi, I would like to make Sambaadmins aware of the simple and powerfull program dnsmasq. It makes setting up a caching dnsserver + dhcp-server that maps local machines to the local domain a breeze, something that is missing in the samba howto collection (http://www.bibsyst.no/samba/docs/man/DNSDHCP.html#id2981727). I've been running it for two months now, so I felt it was time to recomend
2006 Jul 06
3
Stacked Area graph?
Hi, How do I make stacked area graph? For stacked bar graph gruff has seperate class "StackedBar" but I could not find anything as "StackedArea"? Is there any other way? Please let know. Thanks -- Posted via http://www.ruby-forum.com/.
2010 Sep 22
1
How to skip x-axis in gruff line-graph
Please open the below link... http://nubyonrails.com/pages/gruff In "Multi-Line Graph Test 400" graph. How to make white-color-line to start from 5/24(x-axis) instead of 5/6? -- Posted via http://www.ruby-forum.com/. -- 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
2007 Jan 04
4
RMagick problems
I read the 13th recipe in the book "Rails Recipes" from Chad Fowler. I install with gem the gruff-library (gem install gruff). After the installation, I download the "rmagick-win32-1.13.0_IM-6.2.9-3.zip" file and install it on my win32-machine. It was successfully! So, I create a controller with script/generate. In a method, which I wrote after the creation, I''ll make
2015 May 06
2
Backup PC or other solution
On Wed, May 6, 2015 2:46 pm, m.roth at 5-cent.us wrote: > Alessandro Baggi wrote: >> I list, >> I'm new with backup ops and I'm searching a good system to accomplish >> this >> work. I know that on centos there are bacula and amanda but they are >> too >> tape oriented. Another is that they are very powerfull but more complex. >> I >>
2006 Aug 01
1
Gruff Graphs for Scatter Plot
Hi all, Is there any way to generate a scatter plot with Gruff? I had a look at it but it seemed to me to only want a category type x axis. Cheers Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060801/64c92ed7/attachment.html
2007 Apr 09
6
gruff send_data
Hi, for those with experience of Gruff module: suppose I want to send image from server straight to the browser (as example on gruff web site): send_data(g.to_blob, :disposition => ''inline'', :type => ''image/png'', :filename => "gruff.png") the server seems sending this binary data ok, but I am having