-
-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Closed
Description
I just stepped from 3.0.0-beta1 to 3.0.1 and am experiencing a problem with the circle color of the LineDataSet. Currently I have two LineDataSets, one with a solid colored line + circles and one with a dashed line with 54% black. My issue is that the alpha of the dashed line is applied to the circles, causing them to appear in a different color than the line, even tho the same color is used in the setters.
int styleColor = 0xFFFF00FF;
dataSet1.setColor(styleColor);
dataSet1.setCircleColor(styleColor);
int dashedColor = 0x8A000000;
dataSet2.setColor(dashedColor);
dataSet2.enableDashedLine(DASHED_LINE_LENGTH, DASHED_SPACE_LENGTH, DASHED_PHASE);
If I change the dashed color to a solid color instead, the problem goes away:
int dashedColor = 0xFF000000;
EDIT: I just checked and the issue is also present in v3.0.0 (non-beta)
Metadata
Metadata
Assignees
Labels
No labels