in reply to Re: Issues graphing multiple data sets on the same graph in GD::Graph
in thread Issues graphing multiple data sets on the same graph in GD::Graph
As for using the multiple arrays to graph the data sets: I knew about that format, but my problem is that I can't hard code anything. The first thing this program is doing is being distributed to a couple international sites, where the groups and tickets we're graphing varies. Thus, everything has to be dynamic.
To further expound on what I'm trying to do (example code):
$userexample .= @users;
make that output
So on and so forth. Creating the multi-dimensional arrays by hand is something I understand, and I know GD can graph them like that, I'm just trying to figure out how to graph them in a dynamic fashion.@users = ( [userexample[0]], [userexample[1]], [userexample[2]], );
Thanks for the help. :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Issues graphing multiple data sets on the same graph in GD::Graph
by zentara (Cardinal) on Nov 12, 2007 at 20:24 UTC | |
by SoaponaRope (Novice) on Nov 12, 2007 at 21:00 UTC |