|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/www/FusionChart/Code/CFM/DB_dataURL/ |
Upload File : |
<HTML>
<HEAD>
<TITLE>
FusionCharts - dataURL and Database Example
</TITLE>
<SCRIPT LANGUAGE="Javascript" SRC="../../FusionCharts/FusionCharts.js"></SCRIPT>
<style type="text/css">
<!--
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.text{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
-->
</style>
</HEAD>
<!---
'We've included ../Includes/FusionCharts.cfm, which contains functions
'to help us easily embed the charts.
--->
<cfinclude template="../Includes/FusionCharts.cfm">
<BODY>
<CENTER>
<h2>FusionCharts dataURL and Database</h2>
<h4>Click on any pie slice to clice it out right click to enable rotation mode.</h4>
<!---
In this example, we show how to connect FusionCharts to a database
using dataURL method. In our other examples, we've used dataXML method
where the XML is generated in the same page as chart. Here, the XML data
for the chart would be generated in PieData.cfm.
To illustrate how to pass additional data as querystring to dataURL,
we've added an animate property, which will be passed to PieData.cfm.
PieData.cfm would handle this animate property and then generate the
XML accordingly.
--->
<!---
Set DataURL with animation property to 1
NOTE: It's necessary to encode the dataURL if you've added parameters to it
--->
<cfset strDataURL = URLEncodedFormat("PieData.cfm?animate=1")>
<!--- Create the chart - Pie 3D Chart with dataURL as strDataURL --->
<cfoutput>#renderChart("../../FusionCharts/Pie3D.swf", strDataURL, "", "FactorySum", 600, 300, false, false)#</cfoutput>
<BR><BR>
<a href='../NoChart.html' target="_blank">Unable to see the chart above?</a>
</CENTER>
</BODY>
</HTML>