File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
chartjs-java-model/src/main/java/software/xdev/chartjs/model/dataset Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 18
18
import java .util .List ;
19
19
20
20
import software .xdev .chartjs .model .datapoint .BubbleDataPoint ;
21
+ import software .xdev .chartjs .model .enums .PointStyle ;
21
22
import software .xdev .chartjs .model .objects .OptionalArray ;
22
23
23
24
33
34
public class BubbleDataset extends RoundDataset <BubbleDataset , BubbleDataPoint >
34
35
{
35
36
private final List <Integer > hoverRadius = new OptionalArray <>();
37
+
38
+ private PointStyle pointStyle ;
36
39
37
40
@ Override
38
41
protected String defaultType ()
@@ -72,4 +75,15 @@ public List<Integer> getHoverRadius()
72
75
{
73
76
return this .hoverRadius ;
74
77
}
78
+
79
+ public PointStyle getPointStyle ()
80
+ {
81
+ return pointStyle ;
82
+ }
83
+
84
+ public BubbleDataset setPointStyle (final PointStyle pointStyle )
85
+ {
86
+ this .pointStyle = pointStyle ;
87
+ return this ;
88
+ }
75
89
}
You can’t perform that action at this time.
0 commit comments