Rafael Pereira

Members
  • Content count

    6
  • Joined

  • Last visited

About Rafael Pereira

  • Rank
    Forum Newbie

Contact Methods

  • Website URL
    http://www.lisbonsolutions.pt

Profile Information

  • Gender
    Not Telling
  1. Hi Angshu, Thank you for your feedback! Its important to provide a "e-fix" for the highcharts.js (optimized version for FusionCharts/PowerCharts) that is packaged with your solutions... it´s something not easy to do at my side because your highcharts.js is "scrambled". Regards, Rafael Pereira highcharts.zip
  2. Hi NVolke, The effective solution: https://github.com/h....com/issues/320 " This can be fixed by ensuring that renderer.url gets escaped when it is set. This can be done by changing line 2191 of highcharts.src.js from:<br style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">renderer.url = isIE ? '' : loc.href.replace(/#.?$/, ''); // page url used for internal references<br style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">to:<br style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">renderer.url = isIE ? '' : escape(loc.href.replace(/#.?$/, '')); // page url used for internal references " FusionChart Team: Can you ensure this update to HighCharts.js for your "highCharts/powerCharts" package? It's also possible to reproduce with FusionCharts demo site: Try to access this via iPad: http://www.fusioncha...emos/Blueprint/ (Works Fine) but trying this one, doesn't: http://www.fusioncha...emos/Blueprint/?MyParameter=34(77) (Here we have have a "(" or ")" char on the page url where the chart is binded, and BINGO!!!...we get the BLACK BACKGROUND) Nowadays with SEO (Friendly URLs) its very normal to find () on urls...and FusionCharts should be prepared to bind charts on this case. Regards, Rafael Pereira
  3. Hi, Same problem here! Black background on Safari(iPad/iPhone). Any ideas? Regards, Rafael Pereira
  4. Ensure 100% Unique Colors For Multi-Axis

    Hi, But the real question is: Is there any way to do it without "explicit" define colors? Something like "AutoSetUniqueColors='1'"? I don't have to explicit define "dataset / value" colors for simple charts because the FS component ensure unique colors automatically...but with multi-axis there are repeated colors... I can only ensure this by controlling at my side (with some random hexa color function)? (Please check the attachment) Regards, Rafael Pereira
  5. Ensure 100% Unique Colors For Multi-Axis

    DataSetColors_MultiAxisLine.swf.xml
  6. Hi, It's possible to ensure that my "series lines / datasets" are displayed always with unique colors (not duplicated colors)? For "single axis" graphs everything works fine and the colors are properly randomized, but with multi-axis the PowerCharts Engine applies the same color for all datasets inside of an Y-AXIS... they are randomized in a "axis level" but not randomized in "dataset level". (see the XML sample) I'm using PowerCharts V3.2 (MultiAxisLine.swf). Regards, Rafael Pereira