-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
add optional parameter showPoint, pointRadius #11
base: master
Are you sure you want to change the base?
Conversation
this.chartRadiusFactor = 0.8}); | ||
this.chartRadiusFactor = 0.8, | ||
this.showPoint = false, | ||
this.pointRadius = 0.0}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default value of pointRadius should not be 0.0, keep something smaller value
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean minus(-) value? @intkhabahmed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In 'radar_chart_painter.dart'
0.0 value is depend on screen size
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be greater than 0 by default
valuePoints.forEach( | ||
(element) { | ||
pointRadius == 0.0 | ||
? canvas.drawCircle(element, size.width > size.height ? size.height / 100 : size.width / 100, brush) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check here plz @intkhabahmed
Improve UI
fix all problems