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
Hi, I'm trying to add a dashed border when I click on a barchart, at the moment I was abble to add a border but not the way a want.
I've tried this inside BarChartRenderer->drawHighlighted: context.setStrokeColor(UIColor.white.cgColor) context.stroke(barRect) context.setLineDash(phase: 0.0, lengths: [5.0])
This is what i got:
But I want it lo look like this:
The text was updated successfully, but these errors were encountered:
context.stroke(barRect) context.setLineDash(phase: 0.0, lengths: [5.0])
whey you stroke then set line dash? it should be the reversed order
Sorry, something went wrong.
No branches or pull requests
Hi, I'm trying to add a dashed border when I click on a barchart, at the moment I was abble to add a border but not the way a want.
I've tried this inside BarChartRenderer->drawHighlighted:
context.setStrokeColor(UIColor.white.cgColor)
context.stroke(barRect)
context.setLineDash(phase: 0.0, lengths: [5.0])
This is what i got:
But I want it lo look like this:
The text was updated successfully, but these errors were encountered: