![]() |
Advanced Graphs and Charts for PHP |
Dynamic ConfigurationPrerequisites
This tutorial assumes you have already downloaded and installed at least Version 6.0 of the graphing package. It is also assumed that you have a basic understanding of how to add a graph to a web page. If not then please see the following page:- This tutorial demonstrates how to dynamically calculate the values of configuration parameters at runtime. For example the data and x-axis labels may need to be constructed based upon selections made be the user. Directory StructureIn this tutorial you will be create a web page and a couple of configuration files. For the purposes of this tutorial you should create a directory /graphtest/ directory under your web root directory. This tutorial also assumes that you installed the graphing software directly under the web root Step 1 - Create a test MySQL DatabaseFor the purpose of this tutorial the following MySQL database should be created.- Now add the following data to the 'salesPerYear' table:- Step 2 - Create a Custom Data FunctionCreate a file named datafunction.php which contains the following:- Replace [USER] and [PASSWORD] with valid logon details for your MySQL server. Place the file on your web server in a directory /graphtest/ under your web root directory Note: The above assumes that your MySQL server is running on the same machine as your Web Server. If this is not the case then you will need to replace "localhost:3306" with the correct route to your MySQL server. Step 3 - Create the config fileCreate a file named 'config.php' and add the following contents to it. This file should then be placed in the /graphtest/ directory. Notes:
This config.php file contains the parameters which determine certain aspects of the graph
like colors and fonts. For the function and options of each parameter see the following page:- Step 4 - Create a web page and add the Graph to itAdd this HTML code to your page (replacing [www.YourDomain.com] with the actual domain of your web site. Place this page in the /graphtest/ directory. Ensure you replace [www.YourDomain.com] in both the IMG tag and the JavaScript function createGraph(). Note:The relative file paths are relative to the location of the vertical-cylinder-graph.php file (they are NOT relative to the location of the web page). Save the web page and load it up to your web server placing it in the /graphtest/ directory. Final Step - View the page in a browserOpen your web browser and view the page.
You should see a Vertical Cylinder Graph with 36 bars plotted (12 for each series). How it worksWhen the 'Create Graph' button is clicked the JavaScript function 'createGraph()' is called. This function dynamically constructs the new IMG tag with the new year added as a parameter call to the Vertical Cylinder Graph.
The Vertical Cylinder Graph receives the new request and passes the 'year' parameter through to both the datafunction and the config script The new graph image is constructed and returned to the browser for display All this happens without refreshing the page This is a fairly simple example of how to pass user selected / input data through to the graph functions and use that data to dynamically construct graph images. You can pass any number of the variables through the graph functions which in turn will be passed on to the data and config processes. |