Skip to content

Commit 3c7d686

Browse files
committed
Format
1 parent 58cc574 commit 3c7d686

File tree

2 files changed

+27
-26
lines changed

2 files changed

+27
-26
lines changed

chartjs-java-model/src/main/java/software/xdev/chartjs/model/dataset/BubbleDataset.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
public class BubbleDataset extends RoundDataset<BubbleDataset, BubbleDataPoint>
3535
{
3636
private final List<Integer> hoverRadius = new OptionalArray<>();
37-
38-
private PointStyle pointStyle;
37+
38+
private PointStyle pointStyle;
3939

4040
@Override
4141
protected String defaultType()
@@ -75,15 +75,15 @@ public List<Integer> getHoverRadius()
7575
{
7676
return this.hoverRadius;
7777
}
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+
}
8989
}

chartjs-java-model/src/main/java/software/xdev/chartjs/model/options/Plugins.java

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@
1717

1818
import software.xdev.chartjs.model.options.plugins.zoom.Zoom;
1919

20+
2021
public class Plugins
2122
{
2223
protected Title title;
2324
protected Title subtitle;
2425
protected Legend legend;
2526
protected Tooltip tooltip;
2627
protected Zoom zoom;
27-
28+
2829
/**
2930
* @see #setTitle(Title)
3031
*/
@@ -42,24 +43,24 @@ public Plugins setTitle(final Title title)
4243
this.title = title;
4344
return this;
4445
}
45-
46+
4647
/**
4748
* @see #setSubtitle(Title)
4849
*/
49-
public Title getSubtitle()
50-
{
51-
return this.subtitle;
52-
}
53-
50+
public Title getSubtitle()
51+
{
52+
return this.subtitle;
53+
}
54+
5455
/**
5556
* The subtitle configuration is passed into the options.subtitle namespace. The global options for the chart
5657
* subtitle is defined in Chart.defaults.global.subtitle.
5758
*/
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+
}
6364

6465
/**
6566
* @see #setLegend(Legend)
@@ -102,7 +103,7 @@ public Plugins setTooltip(final Tooltip tooltip)
102103
this.tooltip = tooltip;
103104
return this;
104105
}
105-
106+
106107
/**
107108
* @see #setZoom(Zoom)
108109
*/

0 commit comments

Comments
 (0)