-
-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RadarChartView the datas disappear when I enlarge or decrease the window #2207
Comments
eh... seems a bug. |
I looked into it: _yAxisRenderer?.computeAxis(min: _yAxis._axisMinimum, max: _yAxis._axisMaximum, inverted: _yAxis.isInverted) however inside axis._axisMinimum = axis.entries[0]
axis._axisMaximum = axis.entries[n-1]
axis.axisRange = abs(axis._axisMaximum - axis._axisMinimum) And here come's the dead loop, I remember I modified the code here a long time ago in #207, Not having a clean shot for how to fix it. |
Thanks for the explanation
Log View : enlarge the window axis._axisMaximum = 100.0 decrease the window axis._axisMaximum = 240.0 |
yep, it just keeps increasing no matter you how you change the window. |
In my program inspired by ios demo
This is what happens
https://www.dropbox.com/s/r4bmn262esatiuf/screencast%202017-02-28%2010-31-41.mp4?dl=0
If in my program I put in comment the next line?
the problem is solved
https://www.dropbox.com/s/n1vvg4e37m5psxv/screencast%202017-02-28%2010-33-20.mp4?dl=0
OK but why ??
The text was updated successfully, but these errors were encountered: