LivingLegend
Members-
Content count
38 -
Joined
-
Last visited
About LivingLegend
-
Rank
Advanced Member
-
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?
-
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.
-
No I am not re-rendering chart on tab change. Chart remains same.
-
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
-
Any Idea for above problem?
-
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
-
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
-
Is there any way to restrict double click on bar chart?
LivingLegend replied to LivingLegend's topic in FusionWidgets XT
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? -
Is there any way to restrict double click on bar chart?
LivingLegend replied to LivingLegend's topic in FusionWidgets XT
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? -
Is there any way to restrict double click on bar chart?
LivingLegend replied to LivingLegend's topic in FusionWidgets XT
Did you get any update from you development team? Can your developer provide any workaround for this issue? -
Is there any way to restrict double click on bar chart?
LivingLegend replied to LivingLegend's topic in FusionWidgets XT
Any update? -
Is there any way to programmatically enable disable click event of bar chart?
LivingLegend replied to a topic in FusionWidgets XT
Waiting for you reply -
Is there any way to programmatically enable disable click event of bar chart?
LivingLegend replied to a topic in FusionWidgets XT
thanks but can you give some code hint where to do this? -
Is there any way to programmatically enable disable click event of bar chart?
LivingLegend replied to a topic in FusionWidgets XT
is there any way to disable whole chart programatically? -
Is there any way to programmatically enable disable click event of bar chart?
LivingLegend replied to a topic in FusionWidgets XT
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?