|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 12/12/2007 7:42:03 PM
Posts: 1,
Visits: 4
|
|
| IE7 does not show the new chart, when I write new XML with name. data.xml How can I force it to use the last XML file ? |
my code: strXML = "<graph caption='Test' subCaption='Sales' decimalPrecision='0' showNames='1' numberSuffix=' Units' pieSliceDepth='25' formatNumberScale='0'>" strXML = strXML & "<set name='" & "QTD" & "' value='" & nTot.ToString() & "' />" strXML = strXML & "<set name='" & "Per" & "' value='" & nPer.ToString() & "' />" strXML = strXML & "</graph>" Return InfoSoftGlobal.InfoSoftGlobal.FusionCharts.RenderChart("FCF_Column3D.swf", "", strXML, "Barchart", "650", "450", False, False) Thank you!
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: 10/3/2008 2:42:18 AM
Posts: 2,117,
Visits: 498
|
|
Hi,
In this code, you seem to be using dataXML method. The chart wouldn't cache data in this mode.
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|