ialexei / gwt-charts

Automatically exported from code.google.com/p/gwt-charts
0 stars 0 forks source link

SteppedAreaChartOptions.setFocusTarget recursive invinite loop #35

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
Call SteppedAreaChartOptions.setFocusTarget 

What is the expected output? 
Setting the selected FocusTarget. 

What do you see instead?
Throws a Stack overflow

What operating system, browser and version are you using?
Fedora -> Chrome, Firefox

Original issue reported on code.google.com by benjamin.gruenebast on 14 Mar 2013 at 2:00

GoogleCodeExporter commented 8 years ago
Replaced loop function:
    public final void setFocusTarget(FocusTarget focusTarget) {
        setFocusTarget(focusTarget);
    }
With:
    public final void setFocusTarget(FocusTarget focusTarget) {
        setFocusTarget(focusTarget.getName());
    }

Original comment by rglafo...@gmail.com on 27 Aug 2014 at 2:32

GoogleCodeExporter commented 8 years ago

Original comment by rglafo...@gmail.com on 3 Sep 2014 at 11:07