Skip to content

Commit b5743cb

Browse files
committed
AngelLines#lineWidth changed to BigDecimal
1 parent df18158 commit b5743cb

File tree

1 file changed

+6
-4
lines changed
  • chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/scales

1 file changed

+6
-4
lines changed

chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/scales/AngleLines.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
*/
1616
package software.xdev.chartjs.model.options.scales;
1717

18+
import java.math.BigDecimal;
19+
1820
import software.xdev.chartjs.model.color.Color;
1921

2022

@@ -25,7 +27,7 @@ public class AngleLines
2527
{
2628
protected Boolean display;
2729
protected Color color;
28-
protected Integer lineWidth;
30+
protected BigDecimal lineWidth;
2931

3032
/**
3133
* @see #setDisplay(Boolean)
@@ -74,9 +76,9 @@ public AngleLines setColor(final Color color)
7476
}
7577

7678
/**
77-
* @see #setLineWidth(Integer)
79+
* @see #setLineWidth(BigDecimal)
7880
*/
79-
public Integer getLineWidth()
81+
public BigDecimal getLineWidth()
8082
{
8183
return this.lineWidth;
8284
}
@@ -90,7 +92,7 @@ public Integer getLineWidth()
9092
* Default {@code 1}
9193
* </p>
9294
*/
93-
public AngleLines setLineWidth(final Integer lineWidth)
95+
public AngleLines setLineWidth(final BigDecimal lineWidth)
9496
{
9597
this.lineWidth = lineWidth;
9698
return this;

0 commit comments

Comments
 (0)