Re: graphics in perl

2008-06-24 Thread Mike Schienle


On Jun 24, 2008, at 2:32 AM, michael watson (IAH-C) wrote:


Did you try GD::Graph?


-Original Message-
From: Foo JH [mailto:[EMAIL PROTECTED]
Sent: Tue 24/06/2008 8:15 AM
To: modperl@perl.apache.org
Subject: Re: graphics in perl


Rolf Schaufelberger wrote:

Am Sonntag, 22. Juni 2008 11:27:26 schrieb Malka Cymbalista:

We are running perl 5.8.5 on a Linux machine that is running  
apache 2.2.6

with mod_perl 2.0.3.  Our data is in a MySQL database (MySQL 5.0.45)

We have been asked to write a web application that requires plotting
capabilities.  We do most of our web programming in perl so I am  
looking
for a perl module that has the following features: 1. ability to  
create

histograms
2. ability to create x,y plots
3. ability to zoom in on a portion of the graph
4. ability to calculate the distance between 2  points on the graph
5. ability to hover on a point and bring up some text

Does anyone have any suggestions for which perl modules we should  
look

into?


To make your life easier, use a third-party Flash charting tool. It's
pretty and it's more interactive than a static jpg (for example).

The role of Perl in this case is simply to generate the data for the
flash application to load. Most of the time it's an XML document, so
that's something Perl does very well.


I'e used Visual Engineering's KavaChart http://www.ve.com/kavachart/index.html/ 
 to do 1, 2, 3, and 5 above. It may do 4, but I haven't tried  
anything like that with it. I have code for a simple System Load  
application listed at http://www.customvisuals.com/code.shtml. Look  
for System Load near the top of that page. You can also see something  
pulling data from a URL at http://www.customvisuals.com/ by viewing  
the source of that page. Check the graph on the left side of the page.



Mike Schienle



Re: modperl blog system

2007-11-14 Thread Mike Schienle

On Wed, November 14, 2007 9:51 am, Martijn wrote:
 On Nov 14, 2007 2:58 PM, lists user [EMAIL PROTECTED] wrote:
 is there a free weblog system which is developed by modperl, or common perl
 CGI?
 my company's site want to add a blog entry,surely i can write one in
 few days,but don't like to re-make wheels.

 Movable Type (http://www.movabletype.org/) is written in Perl and
...
 Another one is Greymatter (http://www.noahgrey.com/greysoft/) which is
...
 Thirdly (but not lastly in any way), there's Scoop
...

Blosxom (http://www.blosxom.com/) is a free Perl CGI program.

Mike Schienle



Re: Charts and Graphs

2007-04-13 Thread Mike Schienle

On Fri, April 13, 2007 12:25 pm, Tyler Gee wrote:
 On 4/12/07, Bill Whillers [EMAIL PROTECTED] wrote:
 Hello,

 I'm wondering what people are using for efficiently generating charts and
 graphs on the fly from within a mod_perl environment.  I've been using
 GD::Graph for a while but I'm hoping to get a bit more feature-deep.  I'm
 not
 terribly concerned about getting a bit more complicated if it means better
 efficiency and/or better control, etc.

 Any suggestions?

Just to add to the mess, I use a Java package called KavaChart from Visual
Engineering - http://www.ve.com. I have some examples on my site at
http://www.customvisuals.com/.

Mike Schienle