@ecan-bi/datav 1.0.32 → 1.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_utils/hooks/index.d.ts +1 -0
- package/dist/_utils/hooks/useAxisLabelFormatter.d.ts +2 -0
- package/dist/_utils/util.d.ts +1 -0
- package/dist/container/modal/Modal.vue.d.ts +39 -0
- package/dist/graph/bar/Bar.vue.d.ts +33 -8
- package/dist/graph/bar/props.d.ts +21 -5
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +103 -1
- package/dist/graph/combo-graph/props.d.ts +97 -343
- package/dist/graph/line/Line.vue.d.ts +178 -324
- package/dist/graph/line/props.d.ts +102 -138
- package/dist/graph/pie/Pie.vue.d.ts +188 -382
- package/dist/graph/pie/props.d.ts +101 -159
- package/dist/graph/scatter/Scatter.vue.d.ts +114 -0
- package/dist/graph/scatter/props.d.ts +100 -264
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +1 -1
|
@@ -31,6 +31,12 @@ export interface ComboGraphProps extends Props {
|
|
|
31
31
|
yAxis: {
|
|
32
32
|
[key: string]: any;
|
|
33
33
|
}[];
|
|
34
|
+
graphicConfig?: any;
|
|
35
|
+
gridContainLabel: boolean;
|
|
36
|
+
gridTop: string;
|
|
37
|
+
gridBottom: string;
|
|
38
|
+
gridLeft: string;
|
|
39
|
+
gridRight: string;
|
|
34
40
|
}
|
|
35
41
|
export declare const comboGraphProps: ComboGraphProps;
|
|
36
42
|
export declare const comboGraphComponentProps: {
|
|
@@ -39,637 +45,385 @@ export declare const comboGraphComponentProps: {
|
|
|
39
45
|
default?: undefined;
|
|
40
46
|
} | {
|
|
41
47
|
type: any;
|
|
42
|
-
default:
|
|
43
|
-
[key: string]: any;
|
|
44
|
-
}[] | {
|
|
45
|
-
[key: string]: any;
|
|
46
|
-
}[] | import("../../_utils/props").Events | {
|
|
47
|
-
[key: string]: any;
|
|
48
|
-
} | import("../../_utils/props").RequestParams;
|
|
48
|
+
default: any;
|
|
49
49
|
};
|
|
50
50
|
titleText: {
|
|
51
51
|
type?: undefined;
|
|
52
52
|
default?: undefined;
|
|
53
53
|
} | {
|
|
54
54
|
type: any;
|
|
55
|
-
default:
|
|
56
|
-
[key: string]: any;
|
|
57
|
-
}[] | {
|
|
58
|
-
[key: string]: any;
|
|
59
|
-
}[] | import("../../_utils/props").Events | {
|
|
60
|
-
[key: string]: any;
|
|
61
|
-
} | import("../../_utils/props").RequestParams;
|
|
55
|
+
default: any;
|
|
62
56
|
};
|
|
63
57
|
titleSubtext: {
|
|
64
58
|
type?: undefined;
|
|
65
59
|
default?: undefined;
|
|
66
60
|
} | {
|
|
67
61
|
type: any;
|
|
68
|
-
default:
|
|
69
|
-
[key: string]: any;
|
|
70
|
-
}[] | {
|
|
71
|
-
[key: string]: any;
|
|
72
|
-
}[] | import("../../_utils/props").Events | {
|
|
73
|
-
[key: string]: any;
|
|
74
|
-
} | import("../../_utils/props").RequestParams;
|
|
62
|
+
default: any;
|
|
75
63
|
};
|
|
76
64
|
colors: {
|
|
77
65
|
type?: undefined;
|
|
78
66
|
default?: undefined;
|
|
79
67
|
} | {
|
|
80
68
|
type: any;
|
|
81
|
-
default:
|
|
82
|
-
[key: string]: any;
|
|
83
|
-
}[] | {
|
|
84
|
-
[key: string]: any;
|
|
85
|
-
}[] | import("../../_utils/props").Events | {
|
|
86
|
-
[key: string]: any;
|
|
87
|
-
} | import("../../_utils/props").RequestParams;
|
|
69
|
+
default: any;
|
|
88
70
|
};
|
|
89
71
|
legendShow: {
|
|
90
72
|
type?: undefined;
|
|
91
73
|
default?: undefined;
|
|
92
74
|
} | {
|
|
93
75
|
type: any;
|
|
94
|
-
default:
|
|
95
|
-
[key: string]: any;
|
|
96
|
-
}[] | {
|
|
97
|
-
[key: string]: any;
|
|
98
|
-
}[] | import("../../_utils/props").Events | {
|
|
99
|
-
[key: string]: any;
|
|
100
|
-
} | import("../../_utils/props").RequestParams;
|
|
76
|
+
default: any;
|
|
101
77
|
};
|
|
102
78
|
legendTextStyleColor: {
|
|
103
79
|
type?: undefined;
|
|
104
80
|
default?: undefined;
|
|
105
81
|
} | {
|
|
106
82
|
type: any;
|
|
107
|
-
default:
|
|
108
|
-
[key: string]: any;
|
|
109
|
-
}[] | {
|
|
110
|
-
[key: string]: any;
|
|
111
|
-
}[] | import("../../_utils/props").Events | {
|
|
112
|
-
[key: string]: any;
|
|
113
|
-
} | import("../../_utils/props").RequestParams;
|
|
83
|
+
default: any;
|
|
114
84
|
};
|
|
115
85
|
legendLeft: {
|
|
116
86
|
type?: undefined;
|
|
117
87
|
default?: undefined;
|
|
118
88
|
} | {
|
|
119
89
|
type: any;
|
|
120
|
-
default:
|
|
121
|
-
[key: string]: any;
|
|
122
|
-
}[] | {
|
|
123
|
-
[key: string]: any;
|
|
124
|
-
}[] | import("../../_utils/props").Events | {
|
|
125
|
-
[key: string]: any;
|
|
126
|
-
} | import("../../_utils/props").RequestParams;
|
|
90
|
+
default: any;
|
|
127
91
|
};
|
|
128
92
|
legendTop: {
|
|
129
93
|
type?: undefined;
|
|
130
94
|
default?: undefined;
|
|
131
95
|
} | {
|
|
132
96
|
type: any;
|
|
133
|
-
default:
|
|
134
|
-
[key: string]: any;
|
|
135
|
-
}[] | {
|
|
136
|
-
[key: string]: any;
|
|
137
|
-
}[] | import("../../_utils/props").Events | {
|
|
138
|
-
[key: string]: any;
|
|
139
|
-
} | import("../../_utils/props").RequestParams;
|
|
97
|
+
default: any;
|
|
140
98
|
};
|
|
141
99
|
legendOrient: {
|
|
142
100
|
type?: undefined;
|
|
143
101
|
default?: undefined;
|
|
144
102
|
} | {
|
|
145
103
|
type: any;
|
|
146
|
-
default:
|
|
147
|
-
[key: string]: any;
|
|
148
|
-
}[] | {
|
|
149
|
-
[key: string]: any;
|
|
150
|
-
}[] | import("../../_utils/props").Events | {
|
|
151
|
-
[key: string]: any;
|
|
152
|
-
} | import("../../_utils/props").RequestParams;
|
|
104
|
+
default: any;
|
|
153
105
|
};
|
|
154
106
|
xAxisSplitLineShow: {
|
|
155
107
|
type?: undefined;
|
|
156
108
|
default?: undefined;
|
|
157
109
|
} | {
|
|
158
110
|
type: any;
|
|
159
|
-
default:
|
|
160
|
-
[key: string]: any;
|
|
161
|
-
}[] | {
|
|
162
|
-
[key: string]: any;
|
|
163
|
-
}[] | import("../../_utils/props").Events | {
|
|
164
|
-
[key: string]: any;
|
|
165
|
-
} | import("../../_utils/props").RequestParams;
|
|
111
|
+
default: any;
|
|
166
112
|
};
|
|
167
113
|
xAxisLabelColor: {
|
|
168
114
|
type?: undefined;
|
|
169
115
|
default?: undefined;
|
|
170
116
|
} | {
|
|
171
117
|
type: any;
|
|
172
|
-
default:
|
|
173
|
-
[key: string]: any;
|
|
174
|
-
}[] | {
|
|
175
|
-
[key: string]: any;
|
|
176
|
-
}[] | import("../../_utils/props").Events | {
|
|
177
|
-
[key: string]: any;
|
|
178
|
-
} | import("../../_utils/props").RequestParams;
|
|
118
|
+
default: any;
|
|
179
119
|
};
|
|
180
120
|
xAxisLineStyleColor: {
|
|
181
121
|
type?: undefined;
|
|
182
122
|
default?: undefined;
|
|
183
123
|
} | {
|
|
184
124
|
type: any;
|
|
185
|
-
default:
|
|
186
|
-
[key: string]: any;
|
|
187
|
-
}[] | {
|
|
188
|
-
[key: string]: any;
|
|
189
|
-
}[] | import("../../_utils/props").Events | {
|
|
190
|
-
[key: string]: any;
|
|
191
|
-
} | import("../../_utils/props").RequestParams;
|
|
125
|
+
default: any;
|
|
192
126
|
};
|
|
193
127
|
xAxisTickShow: {
|
|
194
128
|
type?: undefined;
|
|
195
129
|
default?: undefined;
|
|
196
130
|
} | {
|
|
197
131
|
type: any;
|
|
198
|
-
default:
|
|
199
|
-
[key: string]: any;
|
|
200
|
-
}[] | {
|
|
201
|
-
[key: string]: any;
|
|
202
|
-
}[] | import("../../_utils/props").Events | {
|
|
203
|
-
[key: string]: any;
|
|
204
|
-
} | import("../../_utils/props").RequestParams;
|
|
132
|
+
default: any;
|
|
205
133
|
};
|
|
206
134
|
yAxisSplitLineShow: {
|
|
207
135
|
type?: undefined;
|
|
208
136
|
default?: undefined;
|
|
209
137
|
} | {
|
|
210
138
|
type: any;
|
|
211
|
-
default:
|
|
212
|
-
[key: string]: any;
|
|
213
|
-
}[] | {
|
|
214
|
-
[key: string]: any;
|
|
215
|
-
}[] | import("../../_utils/props").Events | {
|
|
216
|
-
[key: string]: any;
|
|
217
|
-
} | import("../../_utils/props").RequestParams;
|
|
139
|
+
default: any;
|
|
218
140
|
};
|
|
219
141
|
xAxisSplitLineStyleColor: {
|
|
220
142
|
type?: undefined;
|
|
221
143
|
default?: undefined;
|
|
222
144
|
} | {
|
|
223
145
|
type: any;
|
|
224
|
-
default:
|
|
225
|
-
[key: string]: any;
|
|
226
|
-
}[] | {
|
|
227
|
-
[key: string]: any;
|
|
228
|
-
}[] | import("../../_utils/props").Events | {
|
|
229
|
-
[key: string]: any;
|
|
230
|
-
} | import("../../_utils/props").RequestParams;
|
|
146
|
+
default: any;
|
|
231
147
|
};
|
|
232
148
|
yAxisSplitLineStyleColor: {
|
|
233
149
|
type?: undefined;
|
|
234
150
|
default?: undefined;
|
|
235
151
|
} | {
|
|
236
152
|
type: any;
|
|
237
|
-
default:
|
|
238
|
-
[key: string]: any;
|
|
239
|
-
}[] | {
|
|
240
|
-
[key: string]: any;
|
|
241
|
-
}[] | import("../../_utils/props").Events | {
|
|
242
|
-
[key: string]: any;
|
|
243
|
-
} | import("../../_utils/props").RequestParams;
|
|
153
|
+
default: any;
|
|
244
154
|
};
|
|
245
155
|
yAxisLabelColor: {
|
|
246
156
|
type?: undefined;
|
|
247
157
|
default?: undefined;
|
|
248
158
|
} | {
|
|
249
159
|
type: any;
|
|
250
|
-
default:
|
|
251
|
-
[key: string]: any;
|
|
252
|
-
}[] | {
|
|
253
|
-
[key: string]: any;
|
|
254
|
-
}[] | import("../../_utils/props").Events | {
|
|
255
|
-
[key: string]: any;
|
|
256
|
-
} | import("../../_utils/props").RequestParams;
|
|
160
|
+
default: any;
|
|
257
161
|
};
|
|
258
162
|
yAxisLineStyleColor: {
|
|
259
163
|
type?: undefined;
|
|
260
164
|
default?: undefined;
|
|
261
165
|
} | {
|
|
262
166
|
type: any;
|
|
263
|
-
default:
|
|
264
|
-
[key: string]: any;
|
|
265
|
-
}[] | {
|
|
266
|
-
[key: string]: any;
|
|
267
|
-
}[] | import("../../_utils/props").Events | {
|
|
268
|
-
[key: string]: any;
|
|
269
|
-
} | import("../../_utils/props").RequestParams;
|
|
167
|
+
default: any;
|
|
270
168
|
};
|
|
271
169
|
valueTypeDataFieldNames: {
|
|
272
170
|
type?: undefined;
|
|
273
171
|
default?: undefined;
|
|
274
172
|
} | {
|
|
275
173
|
type: any;
|
|
276
|
-
default:
|
|
277
|
-
[key: string]: any;
|
|
278
|
-
}[] | {
|
|
279
|
-
[key: string]: any;
|
|
280
|
-
}[] | import("../../_utils/props").Events | {
|
|
281
|
-
[key: string]: any;
|
|
282
|
-
} | import("../../_utils/props").RequestParams;
|
|
174
|
+
default: any;
|
|
283
175
|
};
|
|
284
176
|
keyTypeDataFieldNames: {
|
|
285
177
|
type?: undefined;
|
|
286
178
|
default?: undefined;
|
|
287
179
|
} | {
|
|
288
180
|
type: any;
|
|
289
|
-
default:
|
|
290
|
-
[key: string]: any;
|
|
291
|
-
}[] | {
|
|
292
|
-
[key: string]: any;
|
|
293
|
-
}[] | import("../../_utils/props").Events | {
|
|
294
|
-
[key: string]: any;
|
|
295
|
-
} | import("../../_utils/props").RequestParams;
|
|
181
|
+
default: any;
|
|
296
182
|
};
|
|
297
183
|
tooltipShow: {
|
|
298
184
|
type?: undefined;
|
|
299
185
|
default?: undefined;
|
|
300
186
|
} | {
|
|
301
187
|
type: any;
|
|
302
|
-
default:
|
|
303
|
-
[key: string]: any;
|
|
304
|
-
}[] | {
|
|
305
|
-
[key: string]: any;
|
|
306
|
-
}[] | import("../../_utils/props").Events | {
|
|
307
|
-
[key: string]: any;
|
|
308
|
-
} | import("../../_utils/props").RequestParams;
|
|
188
|
+
default: any;
|
|
309
189
|
};
|
|
310
190
|
tooltipTrigger: {
|
|
311
191
|
type?: undefined;
|
|
312
192
|
default?: undefined;
|
|
313
193
|
} | {
|
|
314
194
|
type: any;
|
|
315
|
-
default:
|
|
316
|
-
[key: string]: any;
|
|
317
|
-
}[] | {
|
|
318
|
-
[key: string]: any;
|
|
319
|
-
}[] | import("../../_utils/props").Events | {
|
|
320
|
-
[key: string]: any;
|
|
321
|
-
} | import("../../_utils/props").RequestParams;
|
|
195
|
+
default: any;
|
|
322
196
|
};
|
|
323
197
|
tooltipTextStyleColor: {
|
|
324
198
|
type?: undefined;
|
|
325
199
|
default?: undefined;
|
|
326
200
|
} | {
|
|
327
201
|
type: any;
|
|
328
|
-
default:
|
|
329
|
-
[key: string]: any;
|
|
330
|
-
}[] | {
|
|
331
|
-
[key: string]: any;
|
|
332
|
-
}[] | import("../../_utils/props").Events | {
|
|
333
|
-
[key: string]: any;
|
|
334
|
-
} | import("../../_utils/props").RequestParams;
|
|
202
|
+
default: any;
|
|
335
203
|
};
|
|
336
204
|
tooltipFormatter: {
|
|
337
205
|
type?: undefined;
|
|
338
206
|
default?: undefined;
|
|
339
207
|
} | {
|
|
340
208
|
type: any;
|
|
341
|
-
default:
|
|
342
|
-
[key: string]: any;
|
|
343
|
-
}[] | {
|
|
344
|
-
[key: string]: any;
|
|
345
|
-
}[] | import("../../_utils/props").Events | {
|
|
346
|
-
[key: string]: any;
|
|
347
|
-
} | import("../../_utils/props").RequestParams;
|
|
209
|
+
default: any;
|
|
348
210
|
};
|
|
349
211
|
seriesTypes: {
|
|
350
212
|
type?: undefined;
|
|
351
213
|
default?: undefined;
|
|
352
214
|
} | {
|
|
353
215
|
type: any;
|
|
354
|
-
default:
|
|
355
|
-
[key: string]: any;
|
|
356
|
-
}[] | {
|
|
357
|
-
[key: string]: any;
|
|
358
|
-
}[] | import("../../_utils/props").Events | {
|
|
359
|
-
[key: string]: any;
|
|
360
|
-
} | import("../../_utils/props").RequestParams;
|
|
216
|
+
default: any;
|
|
361
217
|
};
|
|
362
218
|
dataFieldConfigType: {
|
|
363
219
|
type?: undefined;
|
|
364
220
|
default?: undefined;
|
|
365
221
|
} | {
|
|
366
222
|
type: any;
|
|
367
|
-
default:
|
|
368
|
-
[key: string]: any;
|
|
369
|
-
}[] | {
|
|
370
|
-
[key: string]: any;
|
|
371
|
-
}[] | import("../../_utils/props").Events | {
|
|
372
|
-
[key: string]: any;
|
|
373
|
-
} | import("../../_utils/props").RequestParams;
|
|
223
|
+
default: any;
|
|
374
224
|
};
|
|
375
225
|
yAxis: {
|
|
376
226
|
type?: undefined;
|
|
377
227
|
default?: undefined;
|
|
378
228
|
} | {
|
|
379
229
|
type: any;
|
|
380
|
-
default:
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
230
|
+
default: any;
|
|
231
|
+
};
|
|
232
|
+
graphicConfig?: {
|
|
233
|
+
type?: undefined;
|
|
234
|
+
default?: undefined;
|
|
235
|
+
} | {
|
|
236
|
+
type: any;
|
|
237
|
+
default: any;
|
|
238
|
+
};
|
|
239
|
+
gridContainLabel: {
|
|
240
|
+
type?: undefined;
|
|
241
|
+
default?: undefined;
|
|
242
|
+
} | {
|
|
243
|
+
type: any;
|
|
244
|
+
default: any;
|
|
245
|
+
};
|
|
246
|
+
gridTop: {
|
|
247
|
+
type?: undefined;
|
|
248
|
+
default?: undefined;
|
|
249
|
+
} | {
|
|
250
|
+
type: any;
|
|
251
|
+
default: any;
|
|
252
|
+
};
|
|
253
|
+
gridBottom: {
|
|
254
|
+
type?: undefined;
|
|
255
|
+
default?: undefined;
|
|
256
|
+
} | {
|
|
257
|
+
type: any;
|
|
258
|
+
default: any;
|
|
259
|
+
};
|
|
260
|
+
gridLeft: {
|
|
261
|
+
type?: undefined;
|
|
262
|
+
default?: undefined;
|
|
263
|
+
} | {
|
|
264
|
+
type: any;
|
|
265
|
+
default: any;
|
|
266
|
+
};
|
|
267
|
+
gridRight: {
|
|
268
|
+
type?: undefined;
|
|
269
|
+
default?: undefined;
|
|
270
|
+
} | {
|
|
271
|
+
type: any;
|
|
272
|
+
default: any;
|
|
387
273
|
};
|
|
388
274
|
id: {
|
|
389
275
|
type?: undefined;
|
|
390
276
|
default?: undefined;
|
|
391
277
|
} | {
|
|
392
278
|
type: any;
|
|
393
|
-
default:
|
|
394
|
-
[key: string]: any;
|
|
395
|
-
}[] | {
|
|
396
|
-
[key: string]: any;
|
|
397
|
-
}[] | import("../../_utils/props").Events | {
|
|
398
|
-
[key: string]: any;
|
|
399
|
-
} | import("../../_utils/props").RequestParams;
|
|
279
|
+
default: any;
|
|
400
280
|
};
|
|
401
281
|
name: {
|
|
402
282
|
type?: undefined;
|
|
403
283
|
default?: undefined;
|
|
404
284
|
} | {
|
|
405
285
|
type: any;
|
|
406
|
-
default:
|
|
407
|
-
[key: string]: any;
|
|
408
|
-
}[] | {
|
|
409
|
-
[key: string]: any;
|
|
410
|
-
}[] | import("../../_utils/props").Events | {
|
|
411
|
-
[key: string]: any;
|
|
412
|
-
} | import("../../_utils/props").RequestParams;
|
|
286
|
+
default: any;
|
|
413
287
|
};
|
|
414
288
|
keyName: {
|
|
415
289
|
type?: undefined;
|
|
416
290
|
default?: undefined;
|
|
417
291
|
} | {
|
|
418
292
|
type: any;
|
|
419
|
-
default:
|
|
420
|
-
[key: string]: any;
|
|
421
|
-
}[] | {
|
|
422
|
-
[key: string]: any;
|
|
423
|
-
}[] | import("../../_utils/props").Events | {
|
|
424
|
-
[key: string]: any;
|
|
425
|
-
} | import("../../_utils/props").RequestParams;
|
|
293
|
+
default: any;
|
|
426
294
|
};
|
|
427
295
|
type: {
|
|
428
296
|
type?: undefined;
|
|
429
297
|
default?: undefined;
|
|
430
298
|
} | {
|
|
431
299
|
type: any;
|
|
432
|
-
default:
|
|
433
|
-
[key: string]: any;
|
|
434
|
-
}[] | {
|
|
435
|
-
[key: string]: any;
|
|
436
|
-
}[] | import("../../_utils/props").Events | {
|
|
437
|
-
[key: string]: any;
|
|
438
|
-
} | import("../../_utils/props").RequestParams;
|
|
300
|
+
default: any;
|
|
439
301
|
};
|
|
440
302
|
width: {
|
|
441
303
|
type?: undefined;
|
|
442
304
|
default?: undefined;
|
|
443
305
|
} | {
|
|
444
306
|
type: any;
|
|
445
|
-
default:
|
|
446
|
-
[key: string]: any;
|
|
447
|
-
}[] | {
|
|
448
|
-
[key: string]: any;
|
|
449
|
-
}[] | import("../../_utils/props").Events | {
|
|
450
|
-
[key: string]: any;
|
|
451
|
-
} | import("../../_utils/props").RequestParams;
|
|
307
|
+
default: any;
|
|
452
308
|
};
|
|
453
309
|
height: {
|
|
454
310
|
type?: undefined;
|
|
455
311
|
default?: undefined;
|
|
456
312
|
} | {
|
|
457
313
|
type: any;
|
|
458
|
-
default:
|
|
459
|
-
[key: string]: any;
|
|
460
|
-
}[] | {
|
|
461
|
-
[key: string]: any;
|
|
462
|
-
}[] | import("../../_utils/props").Events | {
|
|
463
|
-
[key: string]: any;
|
|
464
|
-
} | import("../../_utils/props").RequestParams;
|
|
314
|
+
default: any;
|
|
465
315
|
};
|
|
466
316
|
position: {
|
|
467
317
|
type?: undefined;
|
|
468
318
|
default?: undefined;
|
|
469
319
|
} | {
|
|
470
320
|
type: any;
|
|
471
|
-
default:
|
|
472
|
-
[key: string]: any;
|
|
473
|
-
}[] | {
|
|
474
|
-
[key: string]: any;
|
|
475
|
-
}[] | import("../../_utils/props").Events | {
|
|
476
|
-
[key: string]: any;
|
|
477
|
-
} | import("../../_utils/props").RequestParams;
|
|
321
|
+
default: any;
|
|
478
322
|
};
|
|
479
323
|
top: {
|
|
480
324
|
type?: undefined;
|
|
481
325
|
default?: undefined;
|
|
482
326
|
} | {
|
|
483
327
|
type: any;
|
|
484
|
-
default:
|
|
485
|
-
[key: string]: any;
|
|
486
|
-
}[] | {
|
|
487
|
-
[key: string]: any;
|
|
488
|
-
}[] | import("../../_utils/props").Events | {
|
|
489
|
-
[key: string]: any;
|
|
490
|
-
} | import("../../_utils/props").RequestParams;
|
|
328
|
+
default: any;
|
|
491
329
|
};
|
|
492
330
|
left: {
|
|
493
331
|
type?: undefined;
|
|
494
332
|
default?: undefined;
|
|
495
333
|
} | {
|
|
496
334
|
type: any;
|
|
497
|
-
default:
|
|
498
|
-
[key: string]: any;
|
|
499
|
-
}[] | {
|
|
500
|
-
[key: string]: any;
|
|
501
|
-
}[] | import("../../_utils/props").Events | {
|
|
502
|
-
[key: string]: any;
|
|
503
|
-
} | import("../../_utils/props").RequestParams;
|
|
335
|
+
default: any;
|
|
504
336
|
};
|
|
505
337
|
zIndex: {
|
|
506
338
|
type?: undefined;
|
|
507
339
|
default?: undefined;
|
|
508
340
|
} | {
|
|
509
341
|
type: any;
|
|
510
|
-
default:
|
|
511
|
-
[key: string]: any;
|
|
512
|
-
}[] | {
|
|
513
|
-
[key: string]: any;
|
|
514
|
-
}[] | import("../../_utils/props").Events | {
|
|
515
|
-
[key: string]: any;
|
|
516
|
-
} | import("../../_utils/props").RequestParams;
|
|
342
|
+
default: any;
|
|
517
343
|
};
|
|
518
344
|
rotate: {
|
|
519
345
|
type?: undefined;
|
|
520
346
|
default?: undefined;
|
|
521
347
|
} | {
|
|
522
348
|
type: any;
|
|
523
|
-
default:
|
|
524
|
-
[key: string]: any;
|
|
525
|
-
}[] | {
|
|
526
|
-
[key: string]: any;
|
|
527
|
-
}[] | import("../../_utils/props").Events | {
|
|
528
|
-
[key: string]: any;
|
|
529
|
-
} | import("../../_utils/props").RequestParams;
|
|
349
|
+
default: any;
|
|
530
350
|
};
|
|
531
351
|
isShow: {
|
|
532
352
|
type?: undefined;
|
|
533
353
|
default?: undefined;
|
|
534
354
|
} | {
|
|
535
355
|
type: any;
|
|
536
|
-
default:
|
|
537
|
-
[key: string]: any;
|
|
538
|
-
}[] | {
|
|
539
|
-
[key: string]: any;
|
|
540
|
-
}[] | import("../../_utils/props").Events | {
|
|
541
|
-
[key: string]: any;
|
|
542
|
-
} | import("../../_utils/props").RequestParams;
|
|
356
|
+
default: any;
|
|
543
357
|
};
|
|
544
358
|
isRender: {
|
|
545
359
|
type?: undefined;
|
|
546
360
|
default?: undefined;
|
|
547
361
|
} | {
|
|
548
362
|
type: any;
|
|
549
|
-
default:
|
|
550
|
-
[key: string]: any;
|
|
551
|
-
}[] | {
|
|
552
|
-
[key: string]: any;
|
|
553
|
-
}[] | import("../../_utils/props").Events | {
|
|
554
|
-
[key: string]: any;
|
|
555
|
-
} | import("../../_utils/props").RequestParams;
|
|
363
|
+
default: any;
|
|
556
364
|
};
|
|
557
365
|
events: {
|
|
558
366
|
type?: undefined;
|
|
559
367
|
default?: undefined;
|
|
560
368
|
} | {
|
|
561
369
|
type: any;
|
|
562
|
-
default:
|
|
563
|
-
[key: string]: any;
|
|
564
|
-
}[] | {
|
|
565
|
-
[key: string]: any;
|
|
566
|
-
}[] | import("../../_utils/props").Events | {
|
|
567
|
-
[key: string]: any;
|
|
568
|
-
} | import("../../_utils/props").RequestParams;
|
|
370
|
+
default: any;
|
|
569
371
|
};
|
|
570
372
|
requestUrl: {
|
|
571
373
|
type?: undefined;
|
|
572
374
|
default?: undefined;
|
|
573
375
|
} | {
|
|
574
376
|
type: any;
|
|
575
|
-
default:
|
|
576
|
-
[key: string]: any;
|
|
577
|
-
}[] | {
|
|
578
|
-
[key: string]: any;
|
|
579
|
-
}[] | import("../../_utils/props").Events | {
|
|
580
|
-
[key: string]: any;
|
|
581
|
-
} | import("../../_utils/props").RequestParams;
|
|
377
|
+
default: any;
|
|
582
378
|
};
|
|
583
379
|
requestMethod: {
|
|
584
380
|
type?: undefined;
|
|
585
381
|
default?: undefined;
|
|
586
382
|
} | {
|
|
587
383
|
type: any;
|
|
588
|
-
default:
|
|
589
|
-
[key: string]: any;
|
|
590
|
-
}[] | {
|
|
591
|
-
[key: string]: any;
|
|
592
|
-
}[] | import("../../_utils/props").Events | {
|
|
593
|
-
[key: string]: any;
|
|
594
|
-
} | import("../../_utils/props").RequestParams;
|
|
384
|
+
default: any;
|
|
595
385
|
};
|
|
596
386
|
requestHeaders: {
|
|
597
387
|
type?: undefined;
|
|
598
388
|
default?: undefined;
|
|
599
389
|
} | {
|
|
600
390
|
type: any;
|
|
601
|
-
default:
|
|
602
|
-
[key: string]: any;
|
|
603
|
-
}[] | {
|
|
604
|
-
[key: string]: any;
|
|
605
|
-
}[] | import("../../_utils/props").Events | {
|
|
606
|
-
[key: string]: any;
|
|
607
|
-
} | import("../../_utils/props").RequestParams;
|
|
391
|
+
default: any;
|
|
608
392
|
};
|
|
609
393
|
isOpenRequestTimer: {
|
|
610
394
|
type?: undefined;
|
|
611
395
|
default?: undefined;
|
|
612
396
|
} | {
|
|
613
397
|
type: any;
|
|
614
|
-
default:
|
|
615
|
-
[key: string]: any;
|
|
616
|
-
}[] | {
|
|
617
|
-
[key: string]: any;
|
|
618
|
-
}[] | import("../../_utils/props").Events | {
|
|
619
|
-
[key: string]: any;
|
|
620
|
-
} | import("../../_utils/props").RequestParams;
|
|
398
|
+
default: any;
|
|
621
399
|
};
|
|
622
400
|
requestInterval: {
|
|
623
401
|
type?: undefined;
|
|
624
402
|
default?: undefined;
|
|
625
403
|
} | {
|
|
626
404
|
type: any;
|
|
627
|
-
default:
|
|
628
|
-
[key: string]: any;
|
|
629
|
-
}[] | {
|
|
630
|
-
[key: string]: any;
|
|
631
|
-
}[] | import("../../_utils/props").Events | {
|
|
632
|
-
[key: string]: any;
|
|
633
|
-
} | import("../../_utils/props").RequestParams;
|
|
405
|
+
default: any;
|
|
634
406
|
};
|
|
635
407
|
requestParams: {
|
|
636
408
|
type?: undefined;
|
|
637
409
|
default?: undefined;
|
|
638
410
|
} | {
|
|
639
411
|
type: any;
|
|
640
|
-
default:
|
|
641
|
-
[key: string]: any;
|
|
642
|
-
}[] | {
|
|
643
|
-
[key: string]: any;
|
|
644
|
-
}[] | import("../../_utils/props").Events | {
|
|
645
|
-
[key: string]: any;
|
|
646
|
-
} | import("../../_utils/props").RequestParams;
|
|
412
|
+
default: any;
|
|
647
413
|
};
|
|
648
414
|
requestSort: {
|
|
649
415
|
type?: undefined;
|
|
650
416
|
default?: undefined;
|
|
651
417
|
} | {
|
|
652
418
|
type: any;
|
|
653
|
-
default:
|
|
654
|
-
[key: string]: any;
|
|
655
|
-
}[] | {
|
|
656
|
-
[key: string]: any;
|
|
657
|
-
}[] | import("../../_utils/props").Events | {
|
|
658
|
-
[key: string]: any;
|
|
659
|
-
} | import("../../_utils/props").RequestParams;
|
|
419
|
+
default: any;
|
|
660
420
|
};
|
|
661
421
|
dataType: {
|
|
662
422
|
type?: undefined;
|
|
663
423
|
default?: undefined;
|
|
664
424
|
} | {
|
|
665
425
|
type: any;
|
|
666
|
-
default:
|
|
667
|
-
[key: string]: any;
|
|
668
|
-
}[] | {
|
|
669
|
-
[key: string]: any;
|
|
670
|
-
}[] | import("../../_utils/props").Events | {
|
|
671
|
-
[key: string]: any;
|
|
672
|
-
} | import("../../_utils/props").RequestParams;
|
|
426
|
+
default: any;
|
|
673
427
|
};
|
|
674
428
|
};
|
|
675
429
|
export declare const comboGraphEvents: string[];
|