numintec

Members
  • Content count

    16
  • Joined

  • Last visited

Posts posted by numintec


  1. Hi,

     

    Thanks for your quick reply. I've download the sources again only to be sure i'm in the last version, but i cant get the bug solved blink.gif. I'm testing with Ie8.

    Could you atach a minimal example ( if yours is working with ie8 )

     

     

    Hi,

     

    The issue has been resolved in FusionCharts XT latest release. Could you please try clearing your browser cache?

     

    Please find the attached screenshot. :)


  2. Hi Again,

     

    I'm sorry but i had a mistake in my testings and didn't noticed I was working in another browser ( firefox ) so ... , once i've tried with IE, the bug came out again.

     

    So i'm afraid that the problem is still on board sad.gif

    Hi :)

     

    I am glad that your issue is resolved.

     

    Happy FusionCharting !:D


  3. Hello

     

    I had a annoying bug in internet explorer where half of my pie disappears once have been load. I use last version of FC and i'm rendering it in HTML5

    Of course that dosen't happend allways, just when I load a pie with only one "<set>". So i downloaded the demo code and I replaced the xml by the folowing code and i had the same result.

     

    to repreduce it :

    *Pie2D

    *html5

    *one <set>

    *internet explorer

     

     

    var data = "<chart caption='name' pieRadius='#radio' showValues='0' showFCMenuItem='0' bgColor='FFFFFF' showBorder='0'><set toolText='NODATA' value='100' color='#000FFF' /></chart>";

    FusionCharts.setCurrentRenderer(GALLERY_RENDERER);

    var chart = new FusionCharts("../../Charts/Pie2D.swf", "ChartId", "560", "400", "0", "0");

    chart.setXMLData(data);

     

    post-22720-0-63774100-1328176837_thumb.jpg

     

     

    Thanks for your time ! smile.gif


  4. Lots of thanks for your quick reply jmuman

     

    I found one fusioncharts.js of 103k in \Tools\FCDataConverter\js and I replaced for mi 68ks file, but unfurtunedly didn0t solve the issue. Now i've got a sample with the same includes that in my app and in one is working ( sample ) and in the other one it isn't im becoming crazy !

     

    Thanks anyway for your interest !

     

    Best regards

    Yes, I am referring to the FusionCharts.js, the one that I found in the distribution that works is 104K. It was somewhere within the documentation or demos directories.

     

    Hope that helps.

     

     


  5. You'r wellcome rolleyes.gif

     

    I've been working to get a reduced example wich I attach.

     

    To force the error you have to :

     

    Step 1 : load the index.php in Firefox with firebug 1.7 or higher

    Step 2 : push the button to load the chart with the firebug console opened

    Step 3 : pres f5 to reload the page

    Step 4 : Detect the following error

     

    P.data(this, t.datakey) is undefined

    FusionChartsBug/Charts/FusionCharts.HC.js

    Line 78

     

    The problem is the jquery Version that I'm using Version 1.3. The problem is that we are not able to change te version becouse it means spending a lot of time migrating.

    In case you cannot repare the bug ( in case its a bug ) i would need to know if the the soulution I've posted before ( coment a part of code in FusionCharts.HC.js ) has any repercusion, becouse i'm afraid that if FusionCharts trigger's an event when the user is leaving the page is becouse its needed for something. So i would need to know what can happen if I coment that line.

     

    Thank you very much, I hope the report its clear enough.

     

    Cheers,

    Marlon

    FusionChartsBug.zip


  6. Hi !

    Thanks for answering.

     

    I'm using Chrome, but i'm trying with Firefox with the same results.

    I could detect the issue, and I solve it by commenting this string --> P.data(this,t.datakey).related || <-- in the file FusionCharts.HC.js.

     

    However, I would like to solve the issue by understanding what's wrong. And i've seen that the problem is in the event teardown. So , when i try to change the screen, this events tryies to clean or something, and then is when i get the error.

     

     

    I can't give the Url becouse its a confidential site, but i'm working hard to reproduce de issue and send it to you. If I find the problem i'll post it. I'm thinking in some incompatibility between the jquery that my app loads and what FS load.

     

    Well that's all the info i get till now.

    I'm sorry for the multiple posts.

     

    Thanks for you time :D


  7. Hi !

    First of all congratulations to the FusionCharts team becouse of the awesome work you are doing

    So i've been configuring some charts in my webpage, and I finnaly get working an html5 chart. In the first load everithing works fine, all loads perfectly, but, when I refresh my page by using javascpript my aplication stops and I can see de folowing error

    Uncaught TypeError: Cannot read property 'related' of undefined

    FusionCharts.HC.js

    Am i missing some configuration ? i show you my declaration

    FusionCharts.setCurrentRenderer('javascript');var chart1 = new FusionCharts(cDIR_LIB_FCv3+"Pie2D.swf",chartName, divWidth, divHeight, "0", "1");

    chart1.setXMLData(xml);

    chart1.setTransparent(false);

    chart1.render(capa);

    Lots of thanks !