pntran1

Members
  • Content count

    5
  • Joined

  • Last visited

About pntran1

  • Rank
    Forum Newbie
  1. Re-redendering doesn't work for me. I got "Objective does not support this property or method" error. I'd like to just to a new xml file to update the upper limit and avoid having to create a new chart and load the swf again. Am I missing something? Please let me know. Thanks. chartObj = getChartFromId("myChartId"); chartObj.setDataXML("fivehundred_mbpls.xml"); chartObj.render("chartdiv"); <-- "Objective does not support this property or method" error is thrown here.
  2. Thanks for the info. Would it be possible to re-render the chart so that it updates the upper limit on the client side after using setData? I would like to be able to change the value from the client side and it does exceed the upper limit sometimes.
  3. Hello, When I use setData to update the angular gauge using setData, the gauge will stop working if the value is greater than the upper limit. Can the upper limit be updated using setData or some other method? I would like to be able to use setData method to update the value on the client side without getting a new XML file from the server. Thanks
  4. Hello, Thank you so much for your help. The sample that you mentioned has exactly what I need. setData method is so simple to use. I found info about setDataXML and setDataURL, but I was not able to find info on setData method in the doc. I noticed one small problem is that the upper limit is not automatically adjusted with setData if new value falls outside of the range. 1) What do I need to do so that the upper limit will be automatically adjusted when using setData and the value is greater than the upper limit? 2) If I have more than one dials, how would I update both of them? 3) Can I use setData to change other attributes of the gauge: lower/upper limit, annotation text, etc? Please provide some examples. 4) What are all the values that can be changed directly from the client side using Java script? Forgive me for asking too many questions. I am quite a newbie, but I like FusionWidget so so much. Thanks you very much!!!
  5. I tried do do the same using AJAX instead. The gauge did get updated with the correct values. However, I noticed a couple problems: 1) The inner circle flickers every time the gauge is updated. 2) The needle always returns to 0 before going to next value. I still would like to see the animation effect so the the user can see a smooth transition from one value to another without jumping or flickering. I would also like to avoid to return the needle back to zero. Please let me know if you know of a solution. Thanks so much!