Gondrong

Members
  • Content count

    27
  • Joined

  • Last visited

Everything posted by Gondrong

  1. drill down problem

    I want to use the drill down function but the chart in popup window doesnt seem to work. This is my files code: http://rapidshare.com/files/233872805/files.zip.html There is three files in there, the main xml, the html that the xml point and the popup xml. I tried the code tag and it doesnt work also I tried adding attachment and it dont work too, please repair that error in the forum. Picture: http://i39.tinypic.com/x4k9zb.jpg In the popup only the div is appearing but the chart is not created. Anyone can help? Thanks
  2. Values

    How to make value that is 1000 not 1K but just 1000. thanks.
  3. Values

    Thanks.
  4. Column Color

    I used the normal column 2d chart, how can I change so that the column is all in same color? what is the xml syntax? thanks.
  5. drill down problem

    Anyone can help?
  6. drill down problem

    Still not work. Even the examples don't work, I mean the popup window only text and not the chart.
  7. Linux

    I wanna ask where can I download the adobe player 8 for linux? because the charts wont work. Thanks.
  8. Linux

    Hmm.. already download the 10 version but dont have a clue installing it in Linux (I use Ubuntu). Can you give me a good step by step installation?? Anyway I download the file from a Windows OS, is that a problem? or should I download it from Linux? Thanks
  9. Border

    How can I make the upper border not visible?? the problem is if the chart reach max (top) the chart collide with the upper border and it doesnt look good. Thanks.
  10. Linux

    So it's the Flash 10 version, will it work with FC3?
  11. Border

    I see... but it wont look good if the upper number still appear. Anyway to make it not visible? Ex: I have a chart with 0-100 and if there is a upper limit of 110 then I want to make it not shown. Thanks for the reply.
  12. Scatter chart values

    How can I make the values in scatter in the side of point? the pic I have is next: I want the average point have values in the right side because if in default position the value is overlap with the median value. Thanks.
  13. Scatter chart values

    I already try using that but it only change the direction of the value and it still overlap. Is it possible to make the position of the values to change? I need it in the right side of the point. Thanks for reply.
  14. scatter chart

    How can I make the x-axis value show in the point in the chart? what xml attribute should I use? Thanks EDIT:nevermind, found it by myself.
  15. How can I use FusionDOM but in the JS code directly? because in here it looks like it is placed in the html. Thanks
  16. MSStackedColumn2D.xml Legend

    Hi, is it possible to make the legend in multiseries stacked to show to show one full column? Ex: if in one stacked column there is two data stack, how can i show the legend for the column that contain that two stack? not each legend for each data in stack. Sorry if bit confusing. Thanks.
  17. Setting width of each bar in a graph

    Maybe add the next months but with no value, that will make the bar more to the left.
  18. about MSStackedColumn2D.swf

    I just succesfully make a chart with MSStackedColumn2D.swf and the quesition is how can I make the chart not from down to up, but like bar from left to right? what properties should I change? Thanks.
  19. about MSStackedColumn2D.swf

    When will it be possible? or is it any way to modify the flash code?
  20. Using FC v3

    Hi, I'm new to FC and XML so I need help very much. First of all I have this case that in previous (before using FC + XML) I use another chart lib and JSON for conectivity with DB. I try use FC with ExtJS 2.2 framework now. Now I want to know how can I make the case happen again using FC and XML. The case is explained in here. I just need to know how XML should look like and how to parse it in the JS file. If the JS code is needed I will be very happy to show it to. Thanks.
  21. Using FC v3

    One thing, is it possible to make it in one file? i mean the xml with the above data. If can, how will the xml look like (this must be in one xml file)? Sorry for too many question. Thanks.
  22. Using FC v3

    So basically I need two XML for this correct? one each for 2007/2008 academic year and 2nd term, 2007/2008 academic year and 1nd term, 2008/2009 academic year and 1st term. Thanks for the reply.
  23. XML question

    I just used FusionChart and XML, in my project previously I used database so what I'm asking is can I add standard XML tags (like ,etc) in the XML file that is called by chart? or is it just only ,,etc that will work? Thanks.
  24. XML question

    edit:nevermind, wrong post
  25. XML question

    Thanks for the reply. I already try that code and it works fantasticly. Anyway in the case that I give each category ther have different academic year. Will this work: < academicyear value='2007/2008 Term 1' > < chart > < categories > < category label='Management'/> < category label='Business' /> < category label='Algorithm' /> < category label='CRM' /> < category label='ERP' /> < category label='English' /> < category label='Religion' /> < /categories> < dataset seriesname='Lecture Score' > < set value='80' /> < set value='60' /> < set value='70' /> < set value='85' /> < set value='90' /> < set value='100' /> < set value='90' /> < /dataset> < dataset seriesname='Subject Score'> < set value='70' /> < set value='60' /> < set value='70' /> < set value='70' /> < set value='80' /> < set value='90' /> < set value='75' /> < /dataset> < /chart> < /academicyear > If it will work, how can I access it in JS? Thanks again.