%
'We've included ../Includes/FusionCharts.asp, which contains functions
'to help us easily embed the charts.
%>
FusionCharts - Using Managed Print
FusionCharts XT
ASP Basic Examples
Multiple Charts on the same page. Setting up manged-print for better printing in Mozilla based browsers.
<%
' This function injects a small JavaScript code in the page that enables print manager
' Print manager collets imaga data from each chart and converts it to canvas image and keep it hidden under the original chart
' When mangedPrint(), window.print() or File menu -> print is invoked the canvas images are printed instead of opriginal charts
Call FC_EnablePrintManager(True)
%>
<%
'Create the chart - Column 3D Chart with data from Data/Data.xml
Call renderChart("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "chart1", 600, 300, false, true)
%>