Loko

Members
  • Content count

    12
  • Joined

  • Last visited

About Loko

  • Rank
    Junior Member
  1. I'm not running localy. Thank you for the information about Flash player v10. Regards Arnaud
  2. Hello Any chance to get this issue fixed ?
  3. Hello I get "Object Doesn't support this property or method" 3 times when rendering the chart. Strangely, I get this error only on some box but not on others, while all our box have precisely the same IE7 version. After this JS error occurs the chart renders corretly, but if I use the contextual link "save as jpeg" there's a progress bar and the exporter gets active but it does not work (the "save as" system window never appears). Here is the code : chart_total_personnes = new FusionCharts("/PORTLETS_COMMUNS/FusionCharts/Charts/MSLine.swf", "chart_total_personnes", "600", "350", "0", "1"); var myExportComponent = new FusionChartsExportObject("fcExporter1", "http://.../PORTLETS_COMMUNS/FusionCharts/Charts/FCExporter.swf"); myExportComponent.componentAttributes.btnDisabledTitle = 'Enregistrer'; myExportComponent.componentAttributes.btnSaveTitle = 'Enregistrer'; myExportComponent.componentAttributes.btnWidth = '120'; myExportComponent.Render("fcexpDiv"); chart_total_personnes.setDataXML(donnees_xml_total_personnes); chart_total_personnes.render("chart_total_personnes_div"); and the XML date received from my server starts with : < chart palette='1' caption='Nombre de voyageurs par mois et par soci
  4. That's it. Thank you for your help. Arnaud
  5. YAxis Stepping Problem

    Hi I face the same problem. I think it is very useful for every FusionCharts users to have precise yaxis values, I want to have 0,10,20,30 etc.. and instead I get 0,16,32,64 then my users don"t understand why "I" chose thoses values. That's right the developper can set up the yAxisMinValue, yAxisMaxValue and numDivLines but it supposes more time spent on developpement and runtime to retrieve the min and max values and then deduce the according numdivlines. It would be great to have a new parameter in a further version that would just let us specify the step between yaxis values (10 for me, 0.5 for Adam). Regards
  6. Search into documentation ?

    Yes, it does help very much , thank you ! I got confused with the "API" word in the title of the tree menu, I tought it dealed with some kind of javascript or so. Best regards Arnaud
  7. Oracle PL/SQL

    Personaly, I just use ajax calls (xhr objects) to get XML data from my Oracle mod_plsql server and that's it ! Very simple and easy to tune.
  8. Hello Is there any way toi search for a word within the Fusioncharts documentation ? I read the documentation but it does not explain every possible parameter. I started from a seeded sample and adapted it with my own figures but the sample uses to parameters such as "connectNullData" and so on, and I'd like to know what it is for. Is there a link where - we can have the list of all the available XML parameters for each .swf - have a description for a given parameter ? Regards Arnaud
  9. Yes, you're right, I got use to send some JSON data and in that case, text content is ok. I guess this would work with the content=text/xml flag, but unfortunatly I can't set it within my server script :-( Anyway I can workaround this : I will get the xml data via an ajax call then store it in a javascript var then use setDataXML. Many thanks for your help.
  10. There is no xml file. This url launches a script on the server that then returns the content of my attached file as en HTTP response. Many data servers work like this, to return some XML or JSON data on the fly, without having to manage some boring and useless files.
  11. Hello I'm a new user to FusionCharts, and trying to adapt the samples to my needs. This is my HTML/JS code : var chart = new FusionCharts("../Charts/MSLine.swf", "ChartId", "600", "350", "0", "1"); chart.setDataURL('/portal/pls/portal/gfc_dev.deplacements.p_test?'); chart.render("chartdiv"); and my server returns : --> see attachement as the [ code ] [ /code] tags does not seem to work. And I get the "Error in loading data" message. It works fine if I put the data in a javascript variable and pass it to setDataXML(). Could you explain me what's wrong ? Regards Loko data.txt