<%@ Language=VBScript %> FusionCharts - dataURL and Database Example <% 'We've included ../Includes/FusionCharts.asp, which contains functions 'to help us easily embed the charts. %>

Click on any pie slice to clice it out right click to enable rotation mode.

<% '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.asp. 'To illustrate how to pass additional data as querystring to dataURL, 'we've added an animate property, which will be passed to PieData.asp. 'PieData.asp would handle this animate property and then generate the 'XML accordingly. 'For the sake of ease, we've used an Access database which is present in '../DB/FactoryDB.mdb. It just contains two tables, which are linked to each 'other. 'Variable to contain dataURL Dim strDataURL 'Set DataURL with animation property to 1 strDataURL = "PieData.asp?animate=1" 'Create the chart - Pie 3D Chart with dataURL as strDataURL Call renderChart("../../FusionCharts/Pie3D.swf", strDataURL, "", "FactorySum", 600, 300, false, false) %>