<% 'We've included ../Includes/FusionCharts.asp, which contains functions 'to help us easily embed the charts. %> FusionCharts - Simple Column 3D Chart using dataXML method <% 'You need to include the following JS file, if you intend to embed the chart using JavaScript. 'Embedding using JavaScripts avoids the "Click to Activate..." issue in Internet Explorer 'When you make your own charts, make sure that the path to this JS file is correct. Else, you 'would get JavaScript errors. %>

Basic example using pre-built Data.json

<% 'This page demonstrates the ease of generating charts using FusionCharts. 'For this chart, we've used a pre-defined Data.json (contained in /Data/ folder) 'Ideally, you would NOT use a physical data file. Instead you'll have 'your own ASP scripts virtually relay the JSON data document. Such examples are also present. 'For a head-start, we've kept this example very simple. ' set chart data format to json FC_SetDataFormat("json") 'Create the chart - Column 3D Chart with data from Data/Data.json Call renderChart("../../FusionCharts/Column3D.swf", "Data/Data.json", "", "myFirst", 600, 300, false, true) %>