liberio

Members
  • Content count

    13
  • Joined

  • Last visited

Everything posted by liberio

  1. Cookies Informations

    Hello, For my privacy statement I need to give some informations to my costumers about cookies. Can somebody tell me: - If Fusionmaps uses cookies ? - What are the cookies exactly doing ? - Are those cookies mandatory for Fusionmaps to work well ? Thank you in advance.
  2. Cookies Informations

    Ok, I found the cause of those cookies: the dTree scripts (JavaScript tree menu) used in the documentation Please find examples below: http://www.vcg.com.br/_scripts/FusionMaps/Contents/Menu.html http://www.beaulieu.com.br/_scripts/FusionMaps/Contents/Menu.html http://docs.fusioncharts.com/maps/ Indeed, maps do not generate cookies. Thank you again Sumedh.
  3. Cookies Informations

    Sorry to insist but I really view such cookies when accessing my 3.1 Fusionmaps instance... I scanned the source code and found those related lines in the Contents/JS/dtree.js file: if (this.config.useCookies) this.setCookie('cs' + this.obj, cn.id); // Highlights the selected node this.setCookie('co'+this.obj, 'cookieValue', yesterday); // [Cookie] Clears a cookie this.setCookie('cs'+this.obj, 'cookieValue', yesterday); // [Cookie] Clears a cookie dTree.prototype.setCookie = function(cookieName, cookieValue, expires, path, domain, secure) { document.cookie = escape(cookieName) + '=' + escape(cookieValue) + (expires ? '; expires=' + expires.toGMTString() : '') + (path ? '; path=' + path : '') + (dom this.setCookie('co' + this.obj, str); // [Cookie] Returns ids of open nodes as a string Do you know what those cookies do ? Thank you in advance.
  4. Cookies Informations

    When using FusionMaps I encounter cookies named 'cod' and 'csd' with number value. Do you know what represents such cookie ? (name and value) Thank you again.
  5. Cookies Informations

    Hello, For my privacy statement I need to give some informations to my costumers about cookies. Can somebody tell me: - If Fusioncharts uses cookies ? - What are the cookies exactly doing ? - Are those cookies mandatory for Fusioncharts to work well ? Thank you in advance.
  6. Hi, First of all I want to thank you for what you have done, it is a great piece of work! I encountered an issue last week. The code sample named 'LinkedCharts using jQuery PrettyPhoto' does not work with both IE and Firefox. The error message is the following : This concerns the official code too : http://www.fusioncharts.com/Code/JavaScript/Basics/UsingLinkedCharts/jqprettyphoto.html Do you have any idea about this minor bug ? Let me know if you need more details, like steps to reproduce. Thanks in advance for your help.
  7. [Bug] Linkedcharts Using Jquery Prettyphoto

    Hello, The official code does not work for me, does it work for you ? http://www.fusioncharts.com/Code/JavaScript/Basics/UsingLinkedCharts/jqprettyphoto.html Thanks,
  8. Hi to the whole FusionCharts community, First of all I want to thank you for what you have done, it is a great piece of work! I would like to set a static value (hard coded) for paths containing the /Charts/*.swf files and the /JSClass/FusionCharts.js file. Do you have any idea if it is possible and how to do this ? Let me know if you need more details. Again, good job guys and thanks in advance for your help.
  9. Yes, but I wonder why InfoSoft chose flash (i.e closed manner) for FusionCharts and html (open manner) for FusionMaps ? Why setting a piece closed when all the product is open ? I do not understand the philosophy... Is there a technical restriction somewhere that needs flash instead of html ? Many thanks, Good afternoon.
  10. Hi Sanjukta, One more question : why is it possible to modify the FusionMaps GUI contrary to the FusionCharts XMLGenerator ? They both are products provided by InfoSoft, aren't they ? Thanks,
  11. Sanjukta, Let's take an example. In fact, I just want to replace this html code: <html> <head> <script language="JavaScript" src="[b]FusionCharts.js[/b]"></script> </head> <body> <!-- Start Code for FusionCharts chart --> <div id="chartdiv" align="center">FusionCharts</div> <script type="text/javascript"> var myChart = new FusionCharts("[b]Column3D.swf[/b]", "FusionCharts_1", "900", "300", "0", "0"); myChart.setDataURL("Data.xml"); myChart.render("chartdiv"); </script> <!-- End Code for FusionCharts chart --> </body> </html> by this one: <html> <head> <script language="JavaScript" src="[b]http://www.my_url/FusionCharts.js[/b]"></script> </head> <body> <!-- Start Code for FusionCharts chart --> <div id="chartdiv" align="center">FusionCharts</div> <script type="text/javascript"> var myChart = new FusionCharts("[b]http://www.my_url/Column3D.swf[/b]", "FusionCharts_1", "900", "300", "0", "0"); myChart.setDataURL("Data.xml"); myChart.render("chartdiv"); </script> <!-- End Code for FusionCharts chart --> </body> </html> And I would like the XMLGenerator do it directly, i.e. without any modification by the user in the html file. But you already answered to my question : the XMLGenerator can not be modified since its source code is not available. Many thanks !
  12. Dear Sanjukta, How do I know whether I use setDataURL method or setDataXML one ? Otherwise, my goal is to modify the XMLGenerator to take these remote url into account. However, the XMLGenerator seems to be a SWF file. Is is possible to modify it ? Thanks.
  13. Hello Sanjukta, When creating my first chart using the official documentation (i.e. http://www.fusioncharts.com/docs/ -> Guide for General Users -> Basics -> Creating your First Chart), I need to copy the chart SWF file from Download Package > Charts and FusionCharts.js from from Download Package >JSClass folder respectively into a local folder. However, I do not want to do it this way, and I prefer giving the url of a remote server where the chart SWF and FusionCharts.js files are located. He is possible to do so ? Hope I made it clearer this time. Thanks.