-
-
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
PieChart render very small #2495
Comments
what it looks like? have reduce the margins? |
Yes, I think piechart is making size 18*18 that look very small.I am using pie chart in tableViewCell that height 55.I seem that it have origin {10,10} that why circle become very small. |
Have you tried to reduce some margins, like |
Yes i did R &D and found in PieRadarChartViewBase.swift, a variable declared var minOffset = CGFloat(10.0).this is hardcoded, when i reduce value of minOffset then perfect for me. but when i change in this file it effects all piecharts that used my project but i want change only for this chart. |
chartView.minOffset = 0.0 |
I took UIView size 55*55 for pie chart but i show my chart(circle) very small. can i do something without increase size of view?
The text was updated successfully, but these errors were encountered: