KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
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/BasicExample/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/queenjbs/www/FusionChart/Code/CFM/BasicExample/MultiChart.cfm
<HTML>
<HEAD>
	<TITLE>
	FusionCharts - Multiple Charts on one Page
	</TITLE>
		
	<SCRIPT LANGUAGE="Javascript" SRC="../../FusionCharts/FusionCharts.js"></SCRIPT>
	<style type="text/css">
	<!--
	body {
		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 Examples</h2>
<h4>Multiple Charts on the same page. Each chart has a unique ID.</h4>
<!---
	This page demonstrates how you can show multiple charts on the same page.
	For this example, all the charts use the pre-built Data.xml (contained in /Data/ folder)
	However, you can very easily change the data source for any chart. 
	
	IMPORTANT NOTE: Each chart necessarily needs to have a unique ID on the page.
	If you do not provide a unique Id, only the last chart might be visible.
	Here, we've used the ID chart1, chart2 and chart3 for the 3 charts on page.
	
	Create the chart - Column 3D Chart with data from Data/Data.xml
--->
	<cfoutput>#renderChart("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "chart1", 600, 300, false, false)#</cfoutput>
	<BR><BR>
	<!--- Now, create a Column 2D Chart --->
	<cfoutput>#renderChart("../../FusionCharts/Column2D.swf", "Data/Data.xml", "", "chart2", 600, 300, false, false)#</cfoutput>
	<BR><BR>
	<!--- Now, create a Line 2D Chart --->
	<cfoutput>#renderChart("../../FusionCharts/Line.swf", "Data/Data.xml", "", "chart3", 600, 300, false, false)#</cfoutput>
<BR><BR>
<a href='../NoChart.html' target="_blank">Unable to see the charts above?</a>
</CENTER>
</BODY>
</HTML>

Anon7 - 2021