<% 'We've included ../Includes/FusionCharts.asp, which contains functions 'to help us easily embed the charts. %> FusionCharts - Multiple Charts on one Page

Multiple Charts on the same page. Each chart has a unique ID.

<% ' Set FusionCharts's render type to javascipt ' This will force FusionCharts JavaScript class to render pure JavaScript chart Call FC_SetRenderer( "javascript" ) %> <% '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. ' Create a Column 2D Chart with data from Data/Data.xml Call renderChart("../../FusionCharts/Column2D.swf", "Data/Data.xml", "", "chart1", 600, 300, false, true) %>

<% Call FC_SetRenderer( "javascript" ) ' Now, create a Line Chart Call renderChart("../../FusionCharts/Line.swf", "Data/Data.xml", "", "chart2", 600, 300, false, true) %>

<% Call FC_SetRenderer( "javascript" ) ' Now, create a Area 2D Chart Call renderChart("../../FusionCharts/Area2D.swf", "Data/Data.xml", "", "chart3", 600, 300, false, true) %>