cja

Members
  • Content count

    25
  • Joined

  • Last visited

About cja

  • Rank
    Forum Member
  1. Designtimeerror: #25081843

    Great - I have implemented that fix and your code now works without throwing an error. While I am delighted this is now fixed, some feedback for you: I would feel better about FusionCharts if it hadn't taken 5 months to get this bug sorted! Charles.
  2. Designtimeerror: #25081843

    I'm pleased to hear you've fixed this internally. I look forward to hearing from you when you release the fix. Charles.
  3. Designtimeerror: #25081843

    Guys, We're now at 4 months since I raised this. This is a bug (which you have acknowledged) and appears in your own sample code. When will this be fixed? FWIW, I believe the Joel Test for professional software development is quite helpful. Test question #5 is: Do you fix bugs before writing new code? Please get this sorted! Charles.
  4. Designtimeerror: #25081843

    Hi, It's now over 2 months! Any update? Charles.
  5. Designtimeerror: #25081843

    Hi, Can you give me an update on where you are with this? (It's been close to a month since my first post!) Thanks, Charles.
  6. Hosting Js Libs On Amazon S3

    You are a star! That's cracked it. FYI, I also had to add the link to /FusionCharts.jqueryplugin.js. Many thanks, Charles.
  7. Hosting Js Libs On Amazon S3

    Hi, I have this exact same issue. Specifically: - I have my FusionCharts files in an S3 bucket and load with a call like <script src="https://s3-eu-west-1.amazonaws.com/domain/html/charts/FusionCharts.js" type="text/javascript"></script> This loads correctly, however the auto-loader is trying to load FusionCharts.HC.js at http://www.domain.com/client/https://s3-eu-west-1.amazonaws.com/domain/html/charts/FusionCharts.HC.js'>http://www.domain.com/client/https://s3-eu-west-1.amazonaws.com/domain/html/charts/FusionCharts.HC.js Which, as the previous poster mentioned, is an invalid domain. My script is at http://www.domain.com and my FC files at https://s3-eu-west-1.amazonaws.com/domain/html/charts so I don't see how I can create a relative path for the js files. Am I missing something / is there a workaround? Thanks, Charles.
  8. Designtimeerror: #25081843

    Thanks for coming back to me Sumedh. I look forward to hearing from you when you have more news. Charles.
  9. Designtimeerror: #25081843

    Just to be clear. In you own sample code - attached above - I see this error in Firefox Firebug:
  10. Designtimeerror: #25081843

    <bump> Any thoughts?
  11. Designtimeerror: #25081843

    <bump> Any thoughts on this? Charles.
  12. Designtimeerror: #25081843

    Hi, Thanks for coming back to me. My chart does have a unique id. The chart works fine except when I try to change the swfUrl. Changing the data no problem. I can replicate this problem in your own example code - see attached file. For me using Firefox 19.0 this example code is throwing the error mentioned above when I click the 'Change Chart Type' button. Charles. ChangeType.html
  13. Hi, I'm noticing an error in Firefox 19.0 when I call jquery code to update a chart's swfUrl. The error message I get is: DesignTimeError: #25081843 myChartID.render Error >> #25081843:IECompatibility() Chart Id is same as a JavaScript variable name. Variable naming error. Please use unique name for chart JS variable, chart-id and container id. I get this with my code and the error is also appearing the the Fusion Charts ChangeType.html example code - At this directory in your documentation:<path to FusionCharts>/Code/jquery/BasicExample/ChangeType.html Is this a known issue / how do I workaround? Thanks, Charles.
  14. OK - that fixed it. I assume that's a bug? One other change I had to make to get it to display as I wanted: 'radius3d' => '0' was not working in Safari / FF but was in IE. I changed to 'radius3d' => '1' and it displays fine in all (i.e. a flat pie chart) Thanks. Charles.
  15. Hi, I'm having a problem with displaying a pie chart using js. It works OK if I have more than one field with a value, but with one field at 100 and the other 2 at 0 I get the attached chart generated. This happens in IE, Safari, FF and Chrome. The json code I am using is: {"chart":{"basefont":"Arial","basefontsize":"11","basefontcolor":"707070","bgAlpha":"100","bgcolor":"FFFFFF","borderColor":"ffffff","showpercentagevalues":"1","plotbordercolor":"FFFFFF","enablesmartlabels":"0","showvalues":"1","showlabels":"0","showlegend":"1","legendBgAlpha":"0","legendBorderColor":"ffffff","legendShadow":"0","startingangle":"180","radius3d":"0","tooltipbgcolor":"525355","tooltipbordercolor":"525355","decimals":"0"},"data":[{"value":"0","label":"Detractors","color":"dc3636"},{"value":"0","label":"Neutrals","color":"d8d8d8"},{"value":"100","label":"Promoters","color":"8ecba1"}],"styles":{"definition":[{"name":"tooltipfont","type":"font","font":"Arial","size":"11","color":"ffffff"}],"application":[{"toobject":"ToolTip","styles":"tooltipfont"}]}} Thanks for your guidance. Charles.