-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Pie chart sections all black iff one sections was once 100% (360 degrees) #1538
Comments
same issue here |
1 similar comment
same issue here |
imaNNeo
added a commit
that referenced
this issue
Jan 10, 2024
imaNNeo
added a commit
that referenced
this issue
Jan 10, 2024
Yes, it is related to the code that you mentioned. The hotfix is landed on the |
Fixed in 0.66.1 |
OlehSv
pushed a commit
to Oleh-Sv/fl_chart
that referenced
this issue
May 14, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem
If the chart once contains one section that takes up 100%, then after an update, pie slices will all be black.
To Reproduce
Version
0.66.0
Potential root cause
With change 68cf161, the
blendMode
is set toBlendMode.srcOut
on the_sectionPaint
if there is a slice that takes up 100%. Later, if there are multiple slices, thedrawSection
is using the same_sectionPaint
with the alteredblendMode
.I can confirm that the following code fixes the problem:
The text was updated successfully, but these errors were encountered: