canotto
Members-
Content count
6 -
Joined
-
Last visited
Everything posted by canotto
-
Good evening, I have a problem in display label in chart. I create a chart from a database and i ahve the space character like + and & character like %26. I try to put the bom in xml file but nothing. The call for the chart is: ... strXML = "<chart exportEnabled='1' bgColor='ffffff' showBorder='1' paletteColors='1c1c1c,5f5f5f,b2b2b2,333333,808080,dddddd' animation=' " & animateChart & "'>" ... 'Finally, close <chart> element strXML = strXML & "</chart>" 'Create the chart - Pie 3D Chart with data from strXML Call renderChart("../../FusionCharts/Pie3D.swf", "", strXML, "FactorySum", 988, 550, false, true) Attach, the image of chart, all + are space in db and all %26 are & in db too. Can you help me? Thanks Andrea chart.pdf
-
Dear Bindhu, Thank you very mauch for your assistance. Andrea
-
Dear Bindhu, thank for your relay but the problem is hard for me. I try with Server.URLEncode and with the replace but didn't works. The complete code are: --Start code-- strXML = "<chart exportEnabled='1' bgColor='ffffff' showBorder='1' paletteColors='1c1c1c,5f5f5f,b2b2b2,333333,808080,dddddd' animation=' " & animateChart & "'>" strQuery = "select * from sov_all where ..." Set oRs = oConn.Execute(strQuery) While Not contatore = 40 svar = ors("nome_tbl_firm") strXML = strXML & "<set label='" & Server.URLEncode(sVar) & "' value='" & ors("conteggiodistudio") & "' link='n-" & Server.URLEncode("lowfirmprofile_adv.asp?studio=" & ors("studio") & "&periodo=" & periodo) & "'/>" end if 'Close recordset contatore = contatore + 1 oRs.MoveNext Wend strXML = strXML & "</chart>" Call renderChart("../../FusionCharts/Pie3D.swf", "", strXML, "FactorySum", 988, 550, false, true) -- end code -- Thanks for your patience Andrea
-
Error saving chart as jpg - client side
canotto replied to Rahul Kumar's topic in FusionCharts and ASP
Dear Basundhara Ghosal, in my computer I use flash player 10.0.32.18 and fusionchart developer: FusionCharts v3.1 Release: 24th February 2009 Best regard Andrea -
Error saving chart as jpg - client side
canotto replied to Rahul Kumar's topic in FusionCharts and ASP
Hi Basundhara Ghosal, my path are: fusioncodeASPanalisi for the file who generate the chart fusioncodeFusionCharts for swf chart file, FusionChartsExportComponent.js, FusionCharts.js Thanks andrea -
Error saving chart as jpg - client side
canotto replied to Rahul Kumar's topic in FusionCharts and ASP
Hi, I have the same problem on export chart with client-side using asp classic. My code is: Call renderChart("../../FusionCharts/Pie3D.swf", "", strXML, "FactorySum", 988, 550, false, true) and the div for exporting: var myExportComponent = new FusionChartsExportObject("fcExporter1", "../../FusionCharts/FCExporter.swf") myExportComponent.Render("fcexpDiv"); the path of the file are the same of the previus post and the i put the registerjs in fusionchart.js file like: registerWithJS = registerWithJS ? registerWithJS : 1; I see the export div in back of the graph in waiting status but if i select the export jpg option the progress bar is not displaied. Thanks