File tree Expand file tree Collapse file tree 2 files changed +27
-26
lines changed
chartjs-java-model/src/main/java/software/xdev/chartjs/model Expand file tree Collapse file tree 2 files changed +27
-26
lines changed Original file line number Diff line number Diff line change 34
34
public class BubbleDataset extends RoundDataset <BubbleDataset , BubbleDataPoint >
35
35
{
36
36
private final List <Integer > hoverRadius = new OptionalArray <>();
37
-
38
- private PointStyle pointStyle ;
37
+
38
+ private PointStyle pointStyle ;
39
39
40
40
@ Override
41
41
protected String defaultType ()
@@ -75,15 +75,15 @@ public List<Integer> getHoverRadius()
75
75
{
76
76
return this .hoverRadius ;
77
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
- }
78
+
79
+ public PointStyle getPointStyle ()
80
+ {
81
+ return this . pointStyle ;
82
+ }
83
+
84
+ public BubbleDataset setPointStyle (final PointStyle pointStyle )
85
+ {
86
+ this .pointStyle = pointStyle ;
87
+ return this ;
88
+ }
89
89
}
Original file line number Diff line number Diff line change 17
17
18
18
import software .xdev .chartjs .model .options .plugins .zoom .Zoom ;
19
19
20
+
20
21
public class Plugins
21
22
{
22
23
protected Title title ;
23
24
protected Title subtitle ;
24
25
protected Legend legend ;
25
26
protected Tooltip tooltip ;
26
27
protected Zoom zoom ;
27
-
28
+
28
29
/**
29
30
* @see #setTitle(Title)
30
31
*/
@@ -42,24 +43,24 @@ public Plugins setTitle(final Title title)
42
43
this .title = title ;
43
44
return this ;
44
45
}
45
-
46
+
46
47
/**
47
48
* @see #setSubtitle(Title)
48
49
*/
49
- public Title getSubtitle ()
50
- {
51
- return this .subtitle ;
52
- }
53
-
50
+ public Title getSubtitle ()
51
+ {
52
+ return this .subtitle ;
53
+ }
54
+
54
55
/**
55
56
* The subtitle configuration is passed into the options.subtitle namespace. The global options for the chart
56
57
* subtitle is defined in Chart.defaults.global.subtitle.
57
58
*/
58
- public Plugins setSubtitle (Title subtitle )
59
- {
60
- this .subtitle = subtitle ;
61
- return this ;
62
- }
59
+ public Plugins setSubtitle (Title subtitle )
60
+ {
61
+ this .subtitle = subtitle ;
62
+ return this ;
63
+ }
63
64
64
65
/**
65
66
* @see #setLegend(Legend)
@@ -102,7 +103,7 @@ public Plugins setTooltip(final Tooltip tooltip)
102
103
this .tooltip = tooltip ;
103
104
return this ;
104
105
}
105
-
106
+
106
107
/**
107
108
* @see #setZoom(Zoom)
108
109
*/
You can’t perform that action at this time.
0 commit comments