File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/scales Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
package software .xdev .chartjs .model .options .scales ;
17
17
18
+ import java .math .BigDecimal ;
19
+
18
20
import software .xdev .chartjs .model .color .Color ;
19
21
20
22
@@ -25,7 +27,7 @@ public class AngleLines
25
27
{
26
28
protected Boolean display ;
27
29
protected Color color ;
28
- protected Integer lineWidth ;
30
+ protected BigDecimal lineWidth ;
29
31
30
32
/**
31
33
* @see #setDisplay(Boolean)
@@ -74,9 +76,9 @@ public AngleLines setColor(final Color color)
74
76
}
75
77
76
78
/**
77
- * @see #setLineWidth(Integer )
79
+ * @see #setLineWidth(BigDecimal )
78
80
*/
79
- public Integer getLineWidth ()
81
+ public BigDecimal getLineWidth ()
80
82
{
81
83
return this .lineWidth ;
82
84
}
@@ -90,7 +92,7 @@ public Integer getLineWidth()
90
92
* Default {@code 1}
91
93
* </p>
92
94
*/
93
- public AngleLines setLineWidth (final Integer lineWidth )
95
+ public AngleLines setLineWidth (final BigDecimal lineWidth )
94
96
{
95
97
this .lineWidth = lineWidth ;
96
98
return this ;
You can’t perform that action at this time.
0 commit comments