Skip to content

Commit 3739323

Browse files
committed
Remove useless doc
"``setAlign`` sets the alignment of the title" - Whoa - This is worthless
1 parent bfe5b93 commit 3739323

File tree

1 file changed

+0
-71
lines changed
  • chartjs-java-model/src/main/java/software/xdev/chartjs/model/options

1 file changed

+0
-71
lines changed

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

Lines changed: 0 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -29,56 +29,33 @@ public class Title
2929
protected Object padding;
3030
protected Object text;
3131

32-
/**
33-
* @see #setAlign(String)
34-
*/
3532
public String getAlign()
3633
{
3734
return this.align;
3835
}
3936

40-
/**
41-
* Alignment of the title
42-
*
43-
* <p>Default: center</p>
44-
*/
4537
public Title setAlign(final String align)
4638
{
4739
this.align = align;
4840
return this;
4941
}
5042

51-
/**
52-
* @see #setColor(Object)
53-
*/
5443
public Object getColor()
5544
{
5645
return this.color;
5746
}
5847

59-
/**
60-
* Color of text
61-
*/
6248
public Title setColor(final Object color)
6349
{
6450
this.color = color;
6551
return this;
6652
}
6753

68-
/**
69-
* @see #setFullSize(Boolean)
70-
*/
7154
public Boolean getFullSize()
7255
{
7356
return this.fullSize;
7457
}
7558

76-
/**
77-
* Marks that this box should take the full width/height of the canvas. If false, the box is sized and placed
78-
* above/beside the chart area.
79-
*
80-
* <p>Default: true</p>
81-
*/
8259
public Title setFullSize(final Boolean fullSize)
8360
{
8461
this.fullSize = fullSize;
@@ -96,92 +73,44 @@ public Title setFont(final Font font)
9673
return this;
9774
}
9875

99-
/**
100-
* @see #setDisplay(Boolean)
101-
*/
10276
public Boolean getDisplay()
10377
{
10478
return this.display;
10579
}
10680

107-
/**
108-
* <p>
109-
* Display the title block
110-
* </p>
111-
*
112-
* <p>
113-
* Default {@code false}
114-
* </p>
115-
*/
11681
public Title setDisplay(final Boolean display)
11782
{
11883
this.display = display;
11984
return this;
12085
}
12186

122-
/**
123-
* @see #setPosition(String)
124-
*/
12587
public String getPosition()
12688
{
12789
return this.position;
12890
}
12991

130-
/**
131-
* <p>
132-
* Position of the title. Only 'top' or 'bottom' are currently allowed
133-
* </p>
134-
*
135-
* <p>
136-
* Default {@code 'top'}
137-
* </p>
138-
*/
13992
public Title setPosition(final String position)
14093
{
14194
this.position = position;
14295
return this;
14396
}
14497

145-
/**
146-
* @see #setPadding(Integer)
147-
*/
14898
public Object getPadding()
14999
{
150100
return this.padding;
151101
}
152102

153-
/**
154-
* <p>
155-
* Number of pixels to add above and below the title text
156-
* </p>
157-
*
158-
* <p>
159-
* Default {@code 10}
160-
* </p>
161-
*/
162103
public Title setPadding(final Object padding)
163104
{
164105
this.padding = padding;
165106
return this;
166107
}
167108

168-
/**
169-
* @see #setText(String)
170-
*/
171109
public Object getText()
172110
{
173111
return this.text;
174112
}
175113

176-
/**
177-
* <p>
178-
* Title text
179-
* </p>
180-
*
181-
* <p>
182-
* Default {@code ""}
183-
* </p>
184-
*/
185114
public Title setText(final Object text)
186115
{
187116
this.text = text;

0 commit comments

Comments
 (0)