What steps will reproduce the problem?
1. enable panning by mRenderer.setPanEnabled(true, false); so only in one axis
2.
3.
What is the expected output? What do you see instead?
pan should work in one axis
Please provide a source code snippet that we can use to replicate the issue.
What version of the product binary library are you using?
latest svn
Please provide any additional information below.
problem is simply in function
public boolean isPanEnabled() {
return isPanXEnabled() && isPanYEnabled();
}
in XYMultipleSeriesRenderer on line 670, where both directions have to be
enabled to allow panning. Solution is to set
public boolean isPanEnabled() {
return isPanXEnabled() || isPanYEnabled();
}
Original issue reported on code.google.com by menion.asamm on 23 Jun 2011 at 9:16
Original issue reported on code.google.com by
menion.asamm
on 23 Jun 2011 at 9:16