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 1515 */
1616package software .xdev .chartjs .model .options .scales ;
1717
18+ import java .math .BigDecimal ;
19+
1820import 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 ;
You can’t perform that action at this time.
0 commit comments