LivingLegend

Members
  • Content count

    38
  • Joined

  • Last visited

About LivingLegend

  • Rank
    Advanced Member
  1. Unable To Update Chart Data

    I am using uxfusionpak library to integrate Fusion Chart to ExtJS and dispose method is not available in it. So how to do it in this case?
  2. Unable To Update Chart Data

    This perfectly work in Chrome and FF. If it change the id of chart, it should not work on chrome and FF also but it is creating problem in IE only. In first post I have mentioned the code snippet where IE causing issue.
  3. Unable To Update Chart Data

    No I am not re-rendering chart on tab change. Chart remains same.
  4. Chart Stop Workin Issue In Ie

    I am facing this issue only in IE. I explain you actual scenario. In my application, there are two tabs in tab panel. I have chart in second panel with drill down utility. When I run application, I show up second tab having chart and drill down utility working fine. Now I am changing to first tab (without chart) and when get back to second tab in chart, drill down stop to work and IE throwing below error. SCRIPT438: Object doesn't support this property or method When I explore the code to find the line, I found the error in RED line below. ............... ............... if( immediate !== false && (o = this.getInterface())){ if( 'setDataXML' in o ){ o.setDataXML(xml); } ............... ............... ............... } When I more explore code, I found that value of o changed in BLUE line in above code when I change tab and come back to chart tab. Note: I am facing this issue only in IE (any version). In Chrome and FF, its work fine. Any workaround or solution for this? Thanks LivingLegend
  5. Unable To Update Chart Data

    Any Idea for above problem?
  6. Unable To Update Chart Data

    Hi, Not able to resolve issue as per above link. I am facing this issue only in IE. I explain you actual scenario. In my application, there are two tabs in tab panel. I have chart in second panel with drill down utility. When I run application, I show up second tab having chart and drill down utility working fine. Now I am changing to first tab (without chart) and when get back to second tab in chart, drill down stop to work and IE throwing below error. SCRIPT438: Object doesn't support this property or method When I explore the code to find the line, I found the error in RED line below. ............... ............... if( immediate !== false && (o = this.getInterface())){ if( 'setDataXML' in o ){ o.setDataXML(xml); } ............... ............... ............... } When I more explore code, I found that value of o changed in BLUE line in above code when I change tab and come back to chart tab. Note: I am facing this issue only in IE (any version). In Chrome and FF, its work fine. Any workaround or solution for this? Thanks LivingLegend
  7. Unable To Update Chart Data

    Hi, I am facing the same issue. Link you have provided above is not working. can you give me exact link or idea to resolve it? Thanks LivingLegend
  8. Is there any way to restrict double click on bar chart?

    This is the very crucial utility as no one want such type of behavior. You should provide such feature to prevent it. so, is there any chances of providing such utility in next release?
  9. Is there any way to restrict double click on bar chart?

    Thanks for suggestion. But, before posting my question here, I have already implemented it. But, sometimes it works and sometimes not. When user click very rapidly, it execute twice. Can't you provide any inbuilt utility that when user click first time, they cannot click on it until calling function completed?
  10. Is there any way to restrict double click on bar chart?

    Did you get any update from you development team? Can your developer provide any workaround for this issue?
  11. thanks but can you give some code hint where to do this?
  12. is there any way to disable whole chart programatically?
  13. Yes, I know that and in fact I have put link on my chart. But, I want to enable disable link programmatically as per requirement. Problem I am facing is, when I click on any column in bar, it fires request to server and load data and load other chart. But, if data is very large, it will take time and meanwhile if user click on other column, it fires other request so causing problem. Is there any alternative? How to disable whole chart?