-
-
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
Line Chart Line is not drawing properly for the large yValues #307
Comments
You need to provide the data sets so we can try reproduce. From the screenshot we can't tell what's wrong. |
Here is the data I have
|
giving the value 9286, 12238, 14022, I think your distance on y axis is fine. Have you looked at what's the yAxis range? |
I set the values for customAxisMin and Max, still giving the same result:
|
should be your setup problem, I don't have trouble with customAxisMax. |
I tried to do that as well, still same output. Here is the full sample code
|
The issue is fixed, somehow view was clipping the line from maxValue, I added extra margin in maxValue so It can be inside the view. chartView.leftAxis.customAxisMax = maxValue + 500; // margin Thanks for the help.. :) |
I tried to integrate line chart but it seems it is not drawing it properly for the large yValues see the attached screenshot. see the screenshot. for small values it works fine.
The text was updated successfully, but these errors were encountered: