Data may be added to the graph in one of four ways:-
Retrieving
Data from files »
Retrieving
Data from another server process »
Retrieving Data from a MySQL Database »
A PHP Data Script »
Retrieving
Data from files |
To set the graph to read the data
from file simply add the "data"
parameter to the URL string of the
<IMG> tag. For example if the
data file is "graphdata.txt"
then your <IMG> tag would become:-
<img
src="bubble-chart.php?data=graphdata.txt"
width=500 height=500> |
Data Format
Within the file the data should follow
this format:-
dataNseriesM: [X value
, Y Value, Z Value]
where N represents the position of the data item in the series and M
represents the series number. The Z Value determines the bubble size.
For example for 3 series of data each containing 6 points the contents of the data file would be:-
data1series1: 30,100,1000
data2series1: 20,124,1500
data3series1: -10,-50,1300
data4series1: 40,160,900
data5series1: 50,120,850
data6series1: 60,125,925
data4series2: 40,50,600
data5series2: 50,60,650
data6series2: 60,70,700
data1series3: 100,10,990
data2series3: 50,15,670
data3series3: -25,10,1020
data4series3: 75,23,1060
data5series3: 125,45,1400
data6series3: 150,76,700 |
«back to top
|
|
Retrieving
Data from another server process |
To set the graph to read the data
from another server side process (ie.
PHP, ASP, JSP etc) simply add the
"data" parameter
to the URL string of the <IMG>
tag.
For example if the data script is
"graphdata.php" then your
<IMG> tag would become:-
<img
src="bubble-chart.php?data=graphdata.php"
width=500 height=500> |
Data Format
The data script should be written
such that it outputs the data in the
following format:-
dataNseriesM: [X value
, Y Value, Z Value]
where N represents the position of the data item in the series and M
represents the series number. The Z Value determines the bubble size.
For example for 3 series of data each containing 6 points the output of the data script would be:-
data1series1: 30,100,1000
data2series1: 20,124,1500
data3series1: -10,-50,1300
data4series1: 40,160,900
data5series1: 50,120,850
data6series1: 60,125,925
data4series2: 40,50,600
data5series2: 50,60,650
data6series2: 60,70,700
data1series3: 100,10,990
data2series3: 50,15,670
data3series3: -25,10,1020
data4series3: 75,23,1060
data5series3: 125,45,1400
data6series3: 150,76,700 |
«back to top
|
|
Retrieving
Data from a MySQL Database |
The graph can be set to connect to
and retieve data directly from a MySQL
database. In order to do this the
graphing software requires some information
about the database. This information
should be placed in a file which can
be read by the graphing software.
The filename should then be specified
in the URL string of the <IMG>
tag with the parameter "dbinfo"
For example, if the file containing
the db information is "dbinfo.txt"
then the <IMG> would be:-
<img
src="bubble-chart.php?dbinfo=dbinfo.txt"
width=500 height=500> |
The dbinfo file will need to contain
the following information:-
server:
username:
password:
database:
a SELECT statement for each series of data.
( Each select statement should return at least 3 values for each row (ie. the X-Y
pair plus the bubble size value )
For example, if a MySQL db named
"Sales" has a username of
"salesaccess" and a password
of "dbpass" with 3 tables
"product1", "product2"
and "product3" then the
dbinfo contents would be:-
server:
localhost
username: salesaccess
password: dbpass
database: Sales
SELECT priceUSD,volume,profit FROM product1
SELECT priceUSD,volume,profit FROM product2
SELECT priceUSD,volume,profit FROM product3 |
Please note:
Do NOT add the semi-colon character
to the end of the SELECT statements.
«back to top
|
|
A PHP Data Script |
This feature allows you to create your own custom PHP Data Script function. The function will be included at
run time and used by the graph to acquire the data.
This method provides enormous flexibility for the data acquisition process. In addition any SESSION data (such
as a user ID) that exists will also be available to this data script.
A custom data script is specified via the parameter "datascript". For example if your data
script is in a file datascript.php which resides in the same directory as the graph function then your <IMG>
tag would be:-
<img src="bubble-chart.php?datascript=datascript.php"
width=500 height=500> |
The data script must be valid PHP code and should contain at least the following function:-
function
datascript() {
return
$lines;
}
|
where $lines is a string array containing the data parameters and values.
The contents of the string array should be the format:-
dataNseriesM: [X value
, Y Value, Z Value]
where N represents the position of the data item in the series and M
represents the series number. The Z Value determines the bubble size.
For example, for 3 series of data each containing 6 points the string array contain:-
data1series1: 30,100,1000
data2series1: 20,124,1500
data3series1: -10,-50,1300
data4series1: 40,160,900
data5series1: 50,120,850
data6series1: 60,125,925
data4series2: 40,50,600
data5series2: 50,60,650
data6series2: 60,70,700
data1series3: 100,10,990
data2series3: 50,15,670
data3series3: -25,10,1020
data4series3: 75,23,1060
data5series3: 125,45,1400
data6series3: 150,76,700 |
Note: The data script should under no circumstances write out any
information via the print or echo functions. This
would cause the production of the graph image to fail.
For an example datascript.php and further guidance on how to use this method please see the
Tutorial section »
«back to top
|
|
|