this code working...
<cfset strEmployeeXML = "<chart caption='Sales Per Category For #intYear#' palette='1' animation='1' decimals='2' baseFontSize='11' isSliced='0' useSameSlantAngle='0' isHollow='0' labelDistance='10'>">
<cfset strEmployeeXML = "#strEmployeeXML##getSaleAllCatXML(intYear,5,true,true)#">
<cfset strEmployeeXML = "#strEmployeeXML#<styles><definition><style type='font' name='CaptionFont' color='#captionFontColor#' size='15' /><style type='font' name='SubCaptionFont' bold='0' /></definition><application><apply toObject='caption' styles='CaptionFont' /><apply toObject='SubCaption' styles='SubCaptionFont' /></application></styles>">
<cfset strEmployeeXML = "#strEmployeeXML#</chart>">
<cfoutput>#renderChart("FusionCharts/Funnel.swf", "", strEmployeeXML , "TopEmployees", 400, 350, false, true)#</cfoutput>
________________________________________________________________
this is not working..
<cfset strCatChartDataURL = encodeDataURL("Year_sales_data.cfm?year=" & intYear,1)>
<cfoutput>#renderChart("FusionCharts/Funnel.swf", strCatChartDataURL, "", "TopEmployees", 400, 350, false, true)#</cfoutput>
_____________________________________________________
Year_sales_data.cfm
<cfsilent>
<cfset intYear = URL.year>
<cfset strXML = "<chart caption='Sales Per Category For #intYear#' palette='1' animation='1' decimals='2' baseFontSize='11' isSliced='0' useSameSlantAngle='0' isHollow='0' labelDistance='10'>">
<cfset strXML = "#strXML##getSaleAllCatXML(intYear,5,true,false)#">
<cfset strXML = "#strXML#<styles><definition><style type='font' name='CaptionFont' color='#captionFontColor#' size='15' /><style type='font' name='SubCaptionFont' bold='0' /></definition><application><apply toObject='caption' styles='CaptionFont' /><apply toObject='SubCaption' styles='SubCaptionFont' /></application></styles>">
<cfset strXML = "#strXML#</chart>">
</cfsilent><cfoutput>#strXML#</cfoutput>