We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b564704 commit 557e556Copy full SHA for 557e556
1 file changed
MPChartLib/src/main/java/com/github/mikephil/charting/data/LineRadarDataSet.java
@@ -101,8 +101,8 @@ public void setFillAlpha(int alpha) {
101
*/
102
public void setLineWidth(float width) {
103
104
- if (width < 0.2f)
105
- width = 0.2f;
+ if (width < 0.0f)
+ width = 0.0f;
106
if (width > 10.0f)
107
width = 10.0f;
108
mLineWidth = Utils.convertDpToPixel(width);
0 commit comments