Gondrong

Members
  • Content count

    27
  • Joined

  • Last visited

Posts posted by Gondrong


  1. 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. 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


  3. 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.


  4. 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.


  5. 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.


  6. How about if I have this case:

     

     

     

    Previously I use database to connect data to another chart lib the data is shown like this:

     

     

     

    cd [PK] | subject_name | lecture_score | subject_score | academicyear | term

     

    -----------------------------------------------------------------------------------------

     

    1 | Management | 80 | 70 | 2007/2008 | 1

     

    2 | Business | 60 | 60 | 2007/2008 | 1

     

    3 | Algorithm | 70 | 70 | 2007/2008 | 2

     

    4 | CRM | 85 | 70 | 2007/2008 | 2

     

    5 | ERP | 90 | 80 | 2008/2009 | 1

     

    6 | English | 100 | 90 | 2008/2009 | 1

     

    7 | Religion | 90 | 75 | 2008/2009 | 1

     

     

     

    How should the xml for fusion looks like? if I want to make graphic that is based on academic year + term parameter. Subject score and lecture score is the chart and legend. Subject name is the xAxis.

     

     

     

    Hope that is enough explanation, sorry for bad english.

     

     

     

    Thanks.