RE: [PHP] Graphing

2012-03-20 Thread Ross Hansen
create them my self but that is more just because i enjoy trying to learn. Regards Ross > CC: php-general@lists.php.net > From: phps...@gmail.com > Date: Sun, 18 Mar 2012 11:27:23 -0400 > To: hansen.r...@live.com.au > Subject: Re: [PHP] Graphing > > > > On 2012-03-

Re: [PHP] Graphing

2012-03-18 Thread Bastien
On 2012-03-18, at 9:33 AM, Ross Hansen wrote: > Hey all, > > I have been working with php for a few years but mostly simple stuff. I'm now > looking at doing some graphing but have no experience with dynamic images. > > I have never used imagecreate but have seen one example of it and not s

Re: [PHP] Graphing

2012-03-18 Thread Mike Mackintosh
Take a look at pChart2. It's the simplest and quickest way to generate a lot of nice graphs. Only requires GD. Look at the source and you can follow their syntax. -- Mike Mackintosh www.HighOnPHP.com On Sunday, March 18, 2012 at 9:33, Ross Hansen wrote: > Hey all, > > I have been working w

Re: [PHP] Graphing

2012-03-18 Thread Ashley Sheridan
Ross Hansen wrote: >Hey all, > >I have been working with php for a few years but mostly simple stuff. >I'm now looking at doing some graphing but have no experience with >dynamic images. > >I have never used imagecreate but have seen one example of it and not >sure if it is really what i'm afte

Re: [PHP] Graphing

2012-03-18 Thread David OBrien
Highcharts.com On Mar 18, 2012 9:34 AM, "Ross Hansen" wrote: > > Hey all, > > I have been working with php for a few years but mostly simple stuff. I'm now looking at doing some graphing but have no experience with dynamic images. > > I have never used imagecreate but have seen one example of it

[PHP] Graphing

2012-03-18 Thread Ross Hansen
Hey all, I have been working with php for a few years but mostly simple stuff. I'm now looking at doing some graphing but have no experience with dynamic images. I have never used imagecreate but have seen one example of it and not sure if it is really what i'm after. It needs to graph changin

Re: [PHP] PHP Graphing Libraries...?

2009-06-08 Thread Richard Heyes
Hi, > Don't see anything except a grid on Firefox 3.0.10 on PC. Yes the whole library requires FF3.5+, Safari 4+ or Chrome 2+. http://www.rgraph.net/#browser -- Richard Heyes HTML5 graphing: RGraph (www.rgraph.net - updated 6th June) PHP mail: RMail (www.phpguru.org/rmail) PHP datagrid: RGrid

Re: [PHP] PHP Graphing Libraries...?

2009-06-08 Thread Richard Heyes
Hi (again), > And before you ask, you can only have one line :-) Though thinking a bit more about this, you could achieve it straight forwardly enough. -- Richard Heyes HTML5 graphing: RGraph (www.rgraph.net - updated 6th June) PHP mail: RMail (www.phpguru.org/rmail) PHP datagrid: RGrid (www.ph

Re: [PHP] PHP Graphing Libraries...?

2009-06-08 Thread Richard Heyes
> ... Something like the last example? http://dev.rgraph.net/examples/scatter.html And before you ask, you can only have one line :-) -- Richard Heyes HTML5 graphing: RGraph (www.rgraph.net - updated 6th June) PHP mail: RMail (www.phpguru.org/rmail) PHP datagrid: RGrid (www.phpguru.org/rgrid)

Re: [PHP] PHP Graphing Libraries...?

2009-06-07 Thread Richard Heyes
Hi, > Correct, but do you notice how although you're plotting multiple lines, they > all share X values? They all change direction nicely and neatly at the same > X value.  Mine don't do that.  I need to plot different X values for each > data set.  So if I'm logging values for time, I won't neces

Re: [PHP] PHP Graphing Libraries...?

2009-06-07 Thread Richard Heyes
Hi, > Reasonable, no? Could be, but I don't follow. A point has an X coord and a Y coord, and with a line chart you simply connect the dots (much like a dot-to-dot). Like the charts here: http://dev.rgraph.net/examples/line.html Or perhaps I'm not quite following (entirely likely) ? -- Richar

Re: [PHP] PHP Graphing Libraries...?

2009-06-07 Thread li...@mgreg.com
On Jun 7, 2009, at 5:37 AM, Richard Heyes wrote: Hi, Can I still link the scatter points with lines for readability? I'm not sure why an API would require a "y" for every "x". I've rarely worked with data sets that follow an exact set of X coords. Then

Re: [PHP] PHP Graphing Libraries...?

2009-06-05 Thread cr.vegelin
" To: ; Sent: Friday, June 05, 2009 7:31 PM Subject: Re: [PHP] PHP Graphing Libraries...? At 4:33 PM -0400 6/4/09, li...@mgreg.com wrote: Hi All, I'm currently looking for a quality (preferably open source) PHP graphing library that will allow me to create various graphs and

Re: [PHP] PHP Graphing Libraries...?

2009-06-05 Thread Richard Heyes
Hi, > I've looked at the docs and I don't see how exactly it handles "x,y" > plotting.  I need the ability to plot multiple lines (which it obviously > does) with wildly varying "x,y" values.   It seems that all of these > libraries "cheat" and force common "x" values via the labels.  I need > som

Re: [PHP] PHP Graphing Libraries...?

2009-06-05 Thread tedd
At 4:33 PM -0400 6/4/09, li...@mgreg.com wrote: Hi All, I'm currently looking for a quality (preferably open source) PHP graphing library that will allow me to create various graphs and plot points. I've seen several that do some amazing things, but cost a fortune -- others

Re: [PHP] PHP Graphing Libraries...?

2009-06-05 Thread li...@mgreg.com
On Jun 5, 2009, at 9:41 AM, Michael A. Peters wrote: Sure - the gd library. Scale the x/y position according to your needs. Well, I was trying to avoid building from scratch, but you may be right. I'm surprised no one else has need for an intuitive setup of this nature. Thanks, Micha

Re: [PHP] PHP Graphing Libraries...?

2009-06-05 Thread Michael A. Peters
li...@mgreg.com wrote: On Jun 5, 2009, at 5:26 AM, Richard Heyes wrote: ... I would have to suggest RGraph... ( http://www.rgraph.net ) :-) It's uses canvas though, so browser support is limited at the moment though to Firefox 3.5, Safari 4 and Chrome 2. I've looked at the docs and I don

[PHP] Re: PHP Graphing Libraries...?

2009-06-05 Thread Al
li...@mgreg.com wrote: Hi All, I'm currently looking for a quality (preferably open source) PHP graphing library that will allow me to create various graphs and plot points. I've seen several that do some amazing things, but cost a fortune -- others are either limited, lack doc

Re: [PHP] PHP Graphing Libraries...?

2009-06-05 Thread Paul M Foster
On Thu, Jun 04, 2009 at 09:17:07PM -0700, Michael A. Peters wrote: > Paul M Foster wrote: >> On Thu, Jun 04, 2009 at 01:50:28PM -0700, Michael A. Peters wrote: >> >>> li...@mgreg.com wrote: >>>> Hi All, >>>> >>>> I'm currently

Re: [PHP] PHP Graphing Libraries...?

2009-06-05 Thread Eddie Drapkin
I've had a lot of success with flot, but that's a jQuery plugin, so it may not be exactly what you need. If you're just making graphs for client side viewing, it ought to be sufficient, though. On Fri, Jun 5, 2009 at 8:33 AM, li...@mgreg.com wrote: > > On Jun 5, 2009, at 5:26 AM, Richard Heyes

Re: [PHP] PHP Graphing Libraries...?

2009-06-05 Thread li...@mgreg.com
On Jun 5, 2009, at 5:26 AM, Richard Heyes wrote: ... I would have to suggest RGraph... ( http://www.rgraph.net ) :-) It's uses canvas though, so browser support is limited at the moment though to Firefox 3.5, Safari 4 and Chrome 2. I've looked at the docs and I don't see how exactly it ha

Re: [PHP] PHP Graphing Libraries...?

2009-06-05 Thread Richard Heyes
> ... I would have to suggest RGraph... ( http://www.rgraph.net ) :-) It's uses canvas though, so browser support is limited at the moment though to Firefox 3.5, Safari 4 and Chrome 2. -- Richard Heyes HTML5 graphing: RGraph (www.rgraph.net - updated 23rd May) PHP mail: RMail (www.phpguru.org/r

Re: [PHP] PHP Graphing Libraries...?

2009-06-04 Thread Michael A. Peters
Paul M Foster wrote: On Thu, Jun 04, 2009 at 01:50:28PM -0700, Michael A. Peters wrote: li...@mgreg.com wrote: Hi All, I'm currently looking for a quality (preferably open source) PHP graphing library that will allow me to create various graphs and plot points. I've seen sever

Re: [PHP] PHP Graphing Libraries...?

2009-06-04 Thread Paul M Foster
On Thu, Jun 04, 2009 at 01:50:28PM -0700, Michael A. Peters wrote: > li...@mgreg.com wrote: >> Hi All, >> >> I'm currently looking for a quality (preferably open source) PHP >> graphing library that will allow me to create various graphs and plot >> points.

[PHP] Re: PHP Graphing Libraries...?

2009-06-04 Thread pan
wrote in message news:4fcc2030-9483-49d9-962c-1849a0987...@mgreg.com... | Hi All, | | I'm currently looking for a quality (preferably open source) PHP | graphing library that will allow me to create various graphs and plot | points. I've seen several that do some amazing things,

Re: [PHP] PHP Graphing Libraries...?

2009-06-04 Thread li...@mgreg.com
On Jun 4, 2009, at 4:35 PM, Gary Smith wrote: JpGraph? Gary Thanks Gary. I've actually been looking at both "JpGraph" (http://www.aditus.nu/jpgraph/ ) and "XML/SWF Charts" (http://www.maani.us/xml_charts/index.php). However, JpGraphs is one of those that suffers from horrendous docum

Re: [PHP] PHP Graphing Libraries...?

2009-06-04 Thread Michael A. Peters
li...@mgreg.com wrote: Hi All, I'm currently looking for a quality (preferably open source) PHP graphing library that will allow me to create various graphs and plot points. I've seen several that do some amazing things, but cost a fortune -- others are either limited, lack doc

Re: [PHP] PHP Graphing Libraries...?

2009-06-04 Thread Gary Smith
li...@mgreg.com wrote: Hi All, I'm currently looking for a quality (preferably open source) PHP graphing library that will allow me to create various graphs and plot points. I've seen several that do some amazing things, but cost a fortune -- others are either limited, lack doc

[PHP] PHP Graphing Libraries...?

2009-06-04 Thread li...@mgreg.com
Hi All, I'm currently looking for a quality (preferably open source) PHP graphing library that will allow me to create various graphs and plot points. I've seen several that do some amazing things, but cost a fortune -- others are either limited, lack documentation, or don

Re: [PHP] Graphing Webstats using MRTG/PHP/MYSQL?

2004-08-02 Thread Fernando Gutierrez
see cacti: http://www.raxnet.net/products/cacti/ On Thu, 29 Jul 2004 14:03:08 +0800, Louie Miranda <[EMAIL PROTECTED]> wrote: > has anyone know any tools related to this? > > Graphing Webstats using MRTG/PHP/MYSQL? > > -- > Louie Miranda > http://www.axishift.com > > -- > PHP General Mailing L

Re: [PHP] Graphing Webstats using MRTG/PHP/MYSQL?

2004-07-29 Thread Louie Miranda
i was thingking more of php+mysql, then mrtg will get all the data from the sql or the php. something like that On Thu, 29 Jul 2004 10:50:09 +0300, Skippy <[EMAIL PROTECTED]> wrote: > Quoting Louie Miranda <[EMAIL PROTECTED]>: > > has anyone know any tools related to this? > > Graphing Webstats us

Re: [PHP] Graphing Webstats using MRTG/PHP/MYSQL?

2004-07-29 Thread Skippy
Quoting Louie Miranda <[EMAIL PROTECTED]>: > has anyone know any tools related to this? > Graphing Webstats using MRTG/PHP/MYSQL? Why MRTG _and_ PHP? AFAIK MRTG produces its own HTML and images. You can either use MRTG with whatever data (webstats) you collected or you can use PHP+MySQL for that a

[PHP] Graphing Webstats using MRTG/PHP/MYSQL?

2004-07-28 Thread Louie Miranda
has anyone know any tools related to this? Graphing Webstats using MRTG/PHP/MYSQL? -- Louie Miranda http://www.axishift.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP graphing tool?

2004-05-10 Thread Kim Steinhaug
You will find a couple on phpclasses.org, also a few on sourceforge.net Some googling and youll find a few more. Ive been down the same road, finally youll see that accually there are no free ones usable for your project (atleast I had a real hard time finding some). There are some really great f

Re: [PHP] PHP graphing tool?

2004-05-10 Thread Torsten Roehr
"Amanda Hemmerich" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Also, the cheaper, the better, and free is best! Older versions are available for free but may not be used commercially: http://www.aditus.nu/jpgraph/jpdownload.php Regards, Torsten > > Thanks again. > > On Mon, 10

Re: [PHP] PHP graphing tool?

2004-05-10 Thread Amanda Hemmerich
Also, the cheaper, the better, and free is best! Thanks again. On Mon, 10 May 2004, Adam Voigt wrote: > http://www.aditus.nu/jpgraph/ > > On Mon, 2004-05-10 at 16:10, Amanda Hemmerich wrote: > > Is there a PHP tool or module out there that would be good for creating > > line or bar graphs? I'm

Re: [PHP] PHP graphing tool?

2004-05-10 Thread Adam Voigt
http://www.aditus.nu/jpgraph/ On Mon, 2004-05-10 at 16:10, Amanda Hemmerich wrote: > Is there a PHP tool or module out there that would be good for creating > line or bar graphs? I'm looking for something I can pass numbers to and > it will just graph those numbers. > > Any recommendations? > >

[PHP] PHP graphing tool?

2004-05-10 Thread Amanda Hemmerich
Is there a PHP tool or module out there that would be good for creating line or bar graphs? I'm looking for something I can pass numbers to and it will just graph those numbers. Any recommendations? Thanks! Amanda -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://

Re: [PHP] graphing packages

2002-04-15 Thread Allen Lee
cacti http://www.raxnet.net/products/cacti/ Allen Lee http://www.modwest.com Modwest PHP Hosting On Mon, 15 Apr 2002, Jason Wong wrote: > On Monday 15 April 2002 07:14, Christian Calloway wrote: > > hey ppl, > > > > I need to create some fairly complex graphs dynamically, and I need to be >

RE: [PHP] graphing packages

2002-04-15 Thread nospam
[EMAIL PROTECTED] > Subject: [PHP] graphing packages > > > hey ppl, > > I need to create some fairly complex graphs dynamically, and > I need to be able to specify line, bar, or pie charts. Are > there any PHP packages that someone could point me to that > would fill m

Re: [PHP] graphing packages

2002-04-15 Thread Pavel Jartsev
Christian Calloway wrote: > hey ppl, > > I need to create some fairly complex graphs dynamically, and I need to be > able to specify line, bar, or pie charts. Are there any PHP packages that > someone could point me to that would fill my needs. Thanks > > > Maybe this helps a little: http://f

Re: [PHP] graphing packages

2002-04-15 Thread heinisch
At 14.04.2002 19:14, you wrote: >hey ppl, > >I need to create some fairly complex graphs dynamically, and I need to be >able to specify line, bar, or pie charts. Are there any PHP packages that >someone could point me to that would fill my needs. Thanks Have a look at : http://www.phpclasses.org

Re: [PHP] graphing packages

2002-04-15 Thread olinux
Never used any of these, but probably what you're looking for: http://www.zend.com/codex.php?CID=345 http://www.hotscripts.com/PHP/Scripts_and_Programs/Graphs_and_Charts/ olinux --- Christian Calloway <[EMAIL PROTECTED]> wrote: > hey ppl, > > I need to create some fairly complex graphs > dynam

Re: [PHP] graphing packages

2002-04-15 Thread Rasmus Lerdorf
Try jpgraph On Sun, 14 Apr 2002, Christian Calloway wrote: > hey ppl, > > I need to create some fairly complex graphs dynamically, and I need to be > able to specify line, bar, or pie charts. Are there any PHP packages that > someone could point me to that would fill my needs. Thanks > > > > --

Re: [PHP] graphing packages

2002-04-15 Thread eat pasta type fasta
http://www.php.net/manual/en/ref.image.php user comments have a lot of stuff about compling GD issues then php builder has some working tutorials like this one http://www.phpbuilder.com/columns/wiesendanger20001218.php3 i was able to take the code from it code and plug in into a dynamic situati

Re: [PHP] graphing packages

2002-04-15 Thread Jason Wong
On Monday 15 April 2002 07:14, Christian Calloway wrote: > hey ppl, > > I need to create some fairly complex graphs dynamically, and I need to be > able to specify line, bar, or pie charts. Are there any PHP packages that > someone could point me to that would fill my needs. Thanks There is jpgra

[PHP] graphing packages

2002-04-14 Thread Christian Calloway
hey ppl, I need to create some fairly complex graphs dynamically, and I need to be able to specify line, bar, or pie charts. Are there any PHP packages that someone could point me to that would fill my needs. Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Graphing Question

2002-03-08 Thread Chris Seymour
Hi All, Does anyone know of a graphing package that will allow a line graph with labels on the data points? Thanks in advance. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php