File tree Expand file tree Collapse file tree 4 files changed +0
-148
lines changed
src/main/java/com/github/abel533/echarts Expand file tree Collapse file tree 4 files changed +0
-148
lines changed Original file line number Diff line number Diff line change 32
32
* @author liuzh
33
33
*/
34
34
public class DataZoom extends Basic <DataZoom > implements Component {
35
- /**
36
- * 是否显示,当show为true时则接管使用指定类目轴的全部系列数据,如不指定则接管全部直角坐标系数据
37
- */
38
- private Boolean show ;
39
35
/**
40
36
* 布局方式,默认为水平布局,可选为:'horizontal' | 'vertical'
41
37
*/
@@ -81,23 +77,6 @@ public class DataZoom extends Basic<DataZoom> implements Component {
81
77
*/
82
78
private Boolean showDetail ;
83
79
84
- /**
85
- * 获取show值
86
- */
87
- public Boolean show () {
88
- return this .show ;
89
- }
90
-
91
- /**
92
- * 设置show值
93
- *
94
- * @param show
95
- */
96
- public DataZoom show (Boolean show ) {
97
- this .show = show ;
98
- return this ;
99
- }
100
-
101
80
/**
102
81
* 获取orient值
103
82
*/
@@ -285,22 +264,6 @@ public DataZoom showDetail(Boolean showDetail){
285
264
return this ;
286
265
}
287
266
288
- /**
289
- * 获取show值
290
- */
291
- public Boolean getShow () {
292
- return show ;
293
- }
294
-
295
- /**
296
- * 设置show值
297
- *
298
- * @param show
299
- */
300
- public void setShow (Boolean show ) {
301
- this .show = show ;
302
- }
303
-
304
267
/**
305
268
* 获取orient值
306
269
*/
Original file line number Diff line number Diff line change @@ -41,10 +41,6 @@ public class Toolbox extends Basic<Toolbox> implements Component {
41
41
* 启用功能,目前支持feature见下,工具箱自定义功能回调处理
42
42
*/
43
43
private Map <String , Feature > feature ;
44
- /**
45
- * 默认false,显示策略,可选为:true(显示) | false(隐藏)
46
- */
47
- private Boolean show ;
48
44
/**
49
45
* 布局方式,默认为水平布局,可选为:'horizontal' | 'vertical'
50
46
*
@@ -82,23 +78,6 @@ public Toolbox color(List<Object> color) {
82
78
return this ;
83
79
}
84
80
85
- /**
86
- * 获取show值
87
- */
88
- public Boolean show () {
89
- return this .show ;
90
- }
91
-
92
- /**
93
- * 设置show值
94
- *
95
- * @param show
96
- */
97
- public Toolbox show (Boolean show ) {
98
- this .show = show ;
99
- return this ;
100
- }
101
-
102
81
/**
103
82
* 获取orient值
104
83
*/
@@ -310,22 +289,6 @@ public void setFeature(Map<String, Feature> feature) {
310
289
this .feature = feature ;
311
290
}
312
291
313
- /**
314
- * 获取show值
315
- */
316
- public Boolean getShow () {
317
- return show ;
318
- }
319
-
320
- /**
321
- * 设置show值
322
- *
323
- * @param show
324
- */
325
- public void setShow (Boolean show ) {
326
- this .show = show ;
327
- }
328
-
329
292
/**
330
293
* 获取orient值
331
294
*/
Original file line number Diff line number Diff line change 31
31
* @author liuzh
32
32
*/
33
33
public class Tooltip extends Basic <Tooltip > implements Component {
34
- /**
35
- * 显示策略,可选为:true(显示) | false(隐藏)
36
- */
37
- private Boolean show ;
38
34
/**
39
35
* tooltip主体内容显示策略,只需tooltip触发事件或显示axisPointer而不需要显示内容时可配置该项为falase,
40
36
* 可选为:true(显示) | false(隐藏)
@@ -105,23 +101,6 @@ public Tooltip textStyle(TextStyle textStyle) {
105
101
return this ;
106
102
}
107
103
108
- /**
109
- * 获取show值
110
- */
111
- public Boolean show () {
112
- return this .show ;
113
- }
114
-
115
- /**
116
- * 设置show值
117
- *
118
- * @param show
119
- */
120
- public Tooltip show (Boolean show ) {
121
- this .show = show ;
122
- return this ;
123
- }
124
-
125
104
/**
126
105
* 获取showContent值
127
106
*/
@@ -297,22 +276,6 @@ public TextStyle textStyle() {
297
276
return this .textStyle ;
298
277
}
299
278
300
- /**
301
- * 获取show值
302
- */
303
- public Boolean getShow () {
304
- return show ;
305
- }
306
-
307
- /**
308
- * 设置show值
309
- *
310
- * @param show
311
- */
312
- public void setShow (Boolean show ) {
313
- this .show = show ;
314
- }
315
-
316
279
/**
317
280
* 获取showContent值
318
281
*/
Original file line number Diff line number Diff line change 37
37
* @author liuzh
38
38
*/
39
39
public abstract class Series <T > extends AbstractData <T > implements Chart {
40
- /**
41
- * 是否可点击,默认开启
42
- */
43
- private Boolean clickable ;
44
40
/**
45
41
* 是否启用图例(legend)hover时的联动响应(高亮显示)
46
42
*/
@@ -165,23 +161,6 @@ public Series markLine(MarkLine markLine) {
165
161
return this ;
166
162
}
167
163
168
- /**
169
- * 获取clickable值
170
- */
171
- public Boolean clickable () {
172
- return this .clickable ;
173
- }
174
-
175
- /**
176
- * 设置clickable值
177
- *
178
- * @param clickable
179
- */
180
- public T clickable (Boolean clickable ) {
181
- this .clickable = clickable ;
182
- return (T ) this ;
183
- }
184
-
185
164
/**
186
165
* 获取legendHoverLink值
187
166
*
@@ -412,22 +391,6 @@ public T showAllSymbol(Boolean showAllSymbol) {
412
391
return (T ) this ;
413
392
}
414
393
415
- /**
416
- * 获取clickable值
417
- */
418
- public Boolean getClickable () {
419
- return clickable ;
420
- }
421
-
422
- /**
423
- * 设置clickable值
424
- *
425
- * @param clickable
426
- */
427
- public void setClickable (Boolean clickable ) {
428
- this .clickable = clickable ;
429
- }
430
-
431
394
/**
432
395
* 获取legendHoverLink值
433
396
*
You can’t perform that action at this time.
0 commit comments