Sign in to follow this  
STM71

Client side export not working - Errors in FusionChartsExportComponent.js

Recommended Posts

The FusionCharts XT  client side export features no longer works or our Drupal 6 site.  The web console shows the following errors in the FusionChartsExportCompenent.js.

 

TypeError: _FCEO.trace is not a function

TypeError: _FCEO.initializeComponent is not a function

 

I believe these errors occur when the following line of code is executed.

 

var myExportComponent = new FusionChartsExportObject("fcExporter1", "/FusionCharts/FCExporter.swf"); 

 

Until recently we were able to export Flash and javascript charts without a problem.  Neither option works now and I have no idea what changed.

 

Please help.  The ability to export client side reports is very important to us.  We are using FusionCharts XT (v3.3.1 - Service Release 1).

 

The chart page has been attached.

 

Here's the XML data,

 

$strXML = "<graph xAxisName='Time' PYAxisName='Inside Temp (deg. F)' SYAxisName='Outside Temp.' bgColor='C5B470' canvasBgColor='C5B470' rotateNames='1' numdivlines='11' showValues='0' decimalPrecision='0' 
bgcolor='F3f3f3' bgAlpha='70' showColumnShadow='1' showShadow='0' divlinecolor='c5c5c5' divLineAlpha='60' showAlternateHGridColor='1' alternateHGridColor='f8f8f8' alternateHGridAlpha='60'
PYAxisMinValue='59' PYAxisMaxValue='71' SYAxisMinValue='-16' SYAxisMaxValue='15' exportEnabled='1' exportAtClient='1' exportHandler='fcExporter1'>
<categories>
<category name='March' />
<category name='April' />
<category name='May' />
<category name='June' />
<category name='July' />
</categories>
<dataset seriesName='Product A' color='AFD8F8' showValues='0'>
<set value='60' />
<set value='61' />
<set value='62' />
<set value='63' />
<set value='68' />
</dataset>
<dataset seriesName='Product B' color='F6BD0F' showValues='0' >
<set value='70' />
<set value='69' />
<set value='68' />
<set value='67' />
<set value='65' />
</dataset>
<dataset seriesName='Total Quantity' color='8BBA00' showValues='0' parentYAxis='S' >
<set value='-5' />
<set value='-14' />
<set value='14' />
<set value='10' />
<set value='12' />
</dataset>
</graph>"
 
Any assistance you can provide would be appreciated.
 

 

 

 

 

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this