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
We would like to draw border lines on each part of a pie chart.
Currently some parts get 3 border lines, others none or 1 or 2.
Our bar charts are also styled with 1 color: a border (not transparant) and the internal area (same color but with transparancy):
The legend of the pie chart has the same look:
We would like to achieve the same visual result for the pie parts. Probably related to #2381 ?
The text was updated successfully, but these errors were encountered:
Those border are drawn, but they overlap each other. There is no such thing in canvas to control the alignment of the stroke (inner, outer, center).
However, you could overwrite the draw function, and add your own calculations for the border position. This can be done, no matter how complex
https://stackoverflow.com/questions/34233514/draw-outer-and-inner-border-around-any-canvas-shape/34234589#34234589
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Expected Behavior
We would like to draw border lines on each part of a pie chart.
Current Behavior
Currently some parts get 3 border lines, others none or 1 or 2.
Visual example of difference
Context
Our bar charts are also styled with 1 color: a border (not transparant) and the internal area (same color but with transparancy):
![image](https://user-images.githubusercontent.com/39212955/43004124-15c4752e-8c2f-11e8-84b1-6853a876fc40.png)
The legend of the pie chart has the same look:
![image](https://user-images.githubusercontent.com/39212955/43004046-d22658be-8c2e-11e8-81a3-3981be2489a6.png)
We would like to achieve the same visual result for the pie parts.
Probably related to #2381 ?
The text was updated successfully, but these errors were encountered: