We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to custom radar chart view, dash line and highlighted top value like this:
It is possible?
The text was updated successfully, but these errors were encountered:
I try to custom RadarChartRenderer with dottedLineSegments CGContext. It working for me.
dottedLineSegments
func dottedLineSegments(between points: [CGPoint]) { let p0 = points[0] move(to: p0) let p1 = points[1] addLine(to: p1) let dashes: [ CGFloat ] = [ 1.0, 2.0 ] setLineWidth(1) setLineDash(phase: 0.0, lengths: dashes) strokePath() }
Sorry, something went wrong.
No branches or pull requests
I want to custom radar chart view, dash line and highlighted top value like this:
It is possible?
The text was updated successfully, but these errors were encountered: