GMs_for_libs

Members
  • Content count

    13
  • Joined

  • Last visited

About GMs_for_libs

  • Rank
    Junior Member
  1. Interactions with the scatter plot

    I would like to clarify a little bit my previous question. I want to allow users to select and copy symbols in the scatter plot and paste them in the drag-node chart as symbols too. Can it be done in Javascript? Olha
  2. Hello. I am thinking how to add the following interactions to the scatter plot (e.g., http://www.fusioncharts.com/Demos/ScatterReturn/Default.html). I want users to be able to right click on any symbol and have options such as delete, copy, and paste without reloading the page. Delete means that users should be able to place a cross over the selected symbol or change its color. Copy means copying the symbol attributes to the clipboard. Paste means pasting the copied symbol on the area where the user clicks. Is it possible to add such interactions with Javascript? Thank you in advance, Olha
  3. Do you possibly have a similar example in PHP? Thanks, Olha
  4. MLPie chart

    Thank you. Somehow the files that did not work had extra tags at the end. Olha
  5. MLPie chart

    I cannot modify any file (in Gallery/data/: MLPie1.xml, MLPie2.xml, MLPie3.xml). I tried deleting one character in each file to see whether they will take any changes. It did not help. When I undo the changes, the swf file still says that XML file is invalid. Thanks, olha
  6. MLPie chart

    I am trying to modify the xml file for MLPie1.swf. Example of this file can be found at http://www.fusioncharts.com/Gallery/Data/MLPie1.xml. But as soon as I change any character in the xml file, the swf file stops working. It says that XML file is not valid. Does anyone know the reason? I am using the trial version of Power charts. Thanks, Olha
  7. Query question

    Could you please answer another question: I am using your SelectScatter (free version) and want to add multiple lines to the tooltext. I tried adding both <BR> and %26lt;br%26gt; and it did not work. I am using your charts with AJAX and PHP. Do you have any other suggestions how to add lines to the tooltext? Thanks, Olha
  8. Query question

    Thank you for your responses. In number 1, it was a problem with Firefox. Firefox did not like form POST method, with GET, everything works fine. It is strange - it worked before, but stopped recently. In the second case, my problem was with MySQL. MySQL takes years only from this range 1901-2155. Olha
  9. Query question

    You can find my temp_results table from which I am building pie charts in the attachment. Fields are terminated by '~'. And yes, I am using MySQL database. For now I came up with the temporary solution, I just reload the data from temp_results into an additional table without duplicates. The application that I am working on can be viewed at http://abuchel.apmaths.uwo.ca/~obuchel/maps/search_form1_copy.php (the application works better in Firefox). I have two more problems with your charts. It would be nice if you could help me solve them too. 1) When I click on any of the items on the legend near my map (see file http://abuchel.apmaths.uwo.ca/~obuchel/maps/search_form1_copy.php) and search, pie charts, histograms and scatter plots linked to markers for each city sometimes show "Now data to display." Could you please explain me why this is happening? Is it because it is a trial version? 2) When I use your 3D Column chart to plot histograms, the chart does not take values before 1900. I have a few years from the XIX century. What should I do to be able to display 1837 or 1857? Thank you in advance, Olha temp_results.txt
  10. Query question

    I've been using 3D Pie chart to represent data in my temp_results table. For the pir chart I need two values - Count and Language name. The following query successfully produced a chart: select COUNT(language) as Count, language from temp_results where city='Kyyiv' and group by language; But later I noticed that in the temp_results I have duplicate records with identical numbers. My temp_results table has the following fields: number, language, and city. I've tried the following queries to eliminate the duplicates: select COUNT(language) as Count, language from temp_results where number=(select distinct number from temp_results where city='$city') group by language; SELECT COUNT(G) as Count, L FROM (select distinct number as G, language as L from temp_results where city='$city') as tbl; These queries did not work. Could you please help me to count distinct records for distinct languages. Thanks in advance, olha
  11. fusioncharts and Google Maps

    Thank you very much, it works now. I have additional question: is there any way to pass a variable to data.xml file using this statement? Olha
  12. fusioncharts and Google Maps

    Here is a clarification of my problem. I can embed chart only as EMBED SRC="SelectScatter.swf" WIDTH="600" HEIGHT="400". It works fine this way with the markers. But how can I render the source file? It would be nice to write it like this: EMBED SRC="SelectScatter.swf?library_path=charts_library&xml_source=Data_Odessa.xml" WIDTH="600" HEIGHT="400" This particular example does not work, but maybe there are other to link swf file with the source file in embed statement? Thanks, Olha
  13. fusioncharts and Google Maps

    I would like to include a colour coded scatter plot generated with Fusioncharts (ScatterReturn available at http://www.fusioncharts.com/Demos/ScatterReturn/Default.html) into a pop-out window in Google Maps. Here is my online map: http://abuchel.apmaths.uwo.ca/~obuchel/maps/search_form1_copy.php. When I copy and paste the code from Default.html file, my Google Map disappears. Is there any way to make this map work with fusion scatter plot? Olha