fusionjohn
Members-
Content count
17 -
Joined
-
Last visited
About fusionjohn
-
Rank
Junior Member
-
Difference Between Fusioncharts And Highcharts
fusionjohn replied to fusionjohn's topic in XML Issue
Thanks, all sorted. -
fusionjohn started following Difference Between Fusioncharts And Highcharts
-
Hi, I'm trying to get the fusion chart graphs to work on an iPad and am having trouble with the 2d pie. Making changes to the <chart> attributes such as showPercentValues has no effect. See pics for differences but I want to remove the percentage with all the decimal places. XML: <chart showBorder='0' bgColor='ffffff' showPlotBorder='1' plotBorderThickness='2' slicingDistance='8' caption='' showNames='1' showValues='1' formatNumberScale='0' formatNumber='1' decimals='0' forceDecimals='0' showZeroPies='0'><set label='C152' tooltext='C152' value='95' /><set label='C172' tooltext='C172' value='21' /></chart> Thanks
-
Not sure how that answers my question. Could the multiple calls cause the problem?
-
Any reply on this?
-
I have 1 or more radar.swf's on a page. I call exportChart() for each if hasRendered() is true. Each then calls the same exportCallback function and maintains a count - when all have called the exportCallback I go on to do other things. Could the multiple calls cause the problem? As before - this all works offline.
-
I have a fully operational exportCallback using Radar.swf on my local server. I have just moved everything to the production server and whilst the JPEG's are being saved correctly to disk, the function defined in exportCallback is not being fired. The production server is https, could this cause a problem? I tried using FC_Exported(objRtn) and my own function name but this makes no difference. I noticed that the images seem to take longer to save on the production server, is there any sort of timeout which could be failing before exportCallback is fired?
-
I have resolved the issue - just needed to look more carefully at the examples! I am running through IIS so did not have to make any security settings changes.
-
Could anyone help on a similar problem - I don't get quite as far as ItalFreak. In debug I get the following messages: Export Capture Process Start: The chart has started capturing bitmap data for export. Export Trasmit Data Start: The chart has finished capture stage of bitmap export and is now initiating transfer of data to JS function 'FC_ExportDataReady'. ...but the "Waiting" button never gets enabled or changes to Save. I have upgraded to Flash Player 10.
-
Not specefied. It is a generic page to Response.BinaryWrite files stored above the root. It can be used for any file type. Does it need to be progessive or non-progressive.
-
JPEG. Linking to a JPEG directly in the web root works fine.
-
I realise this topic is quite old but I have a similar issue. I have a drag node chart using: imageNode='1' imageurl='/images/icons/org_female.png' which works fine. However, in the same chart I use: imageNode='1' imageurl='page.asp?id=123' which loads an image (using Response.BinaryWrite) which is secured above the web root. In this case the image and node text does not display, I just get a blank box. I use this method elsewhere on standard web pages and it does display the image. I have tried URL encoding the imageurl but this has no effect. Any help, much appreciated!