@ecan-bi/datav 1.0.34 → 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/graph/combo-graph/props.d.ts +62 -378
- package/dist/graph/line/Line.vue.d.ts +134 -376
- package/dist/graph/line/props.d.ts +60 -156
- package/dist/graph/pie/Pie.vue.d.ts +151 -427
- package/dist/graph/pie/props.d.ts +66 -174
- package/dist/graph/scatter/props.d.ts +58 -300
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
|
@@ -30,6 +30,7 @@ export interface LineProps extends Props {
|
|
|
30
30
|
gridBottom: string;
|
|
31
31
|
gridLeft: string;
|
|
32
32
|
gridRight: string;
|
|
33
|
+
graphicConfig?: any;
|
|
33
34
|
}
|
|
34
35
|
export declare const lineProps: LineProps;
|
|
35
36
|
export declare const lineComponentProps: {
|
|
@@ -38,468 +39,371 @@ export declare const lineComponentProps: {
|
|
|
38
39
|
default?: undefined;
|
|
39
40
|
} | {
|
|
40
41
|
type: any;
|
|
41
|
-
default:
|
|
42
|
-
[key: string]: any;
|
|
43
|
-
} | import("../../_utils/props").RequestParams;
|
|
42
|
+
default: any;
|
|
44
43
|
};
|
|
45
44
|
titleText: {
|
|
46
45
|
type?: undefined;
|
|
47
46
|
default?: undefined;
|
|
48
47
|
} | {
|
|
49
48
|
type: any;
|
|
50
|
-
default:
|
|
51
|
-
[key: string]: any;
|
|
52
|
-
} | import("../../_utils/props").RequestParams;
|
|
49
|
+
default: any;
|
|
53
50
|
};
|
|
54
51
|
titleSubtext: {
|
|
55
52
|
type?: undefined;
|
|
56
53
|
default?: undefined;
|
|
57
54
|
} | {
|
|
58
55
|
type: any;
|
|
59
|
-
default:
|
|
60
|
-
[key: string]: any;
|
|
61
|
-
} | import("../../_utils/props").RequestParams;
|
|
56
|
+
default: any;
|
|
62
57
|
};
|
|
63
58
|
titleLeft: {
|
|
64
59
|
type?: undefined;
|
|
65
60
|
default?: undefined;
|
|
66
61
|
} | {
|
|
67
62
|
type: any;
|
|
68
|
-
default:
|
|
69
|
-
[key: string]: any;
|
|
70
|
-
} | import("../../_utils/props").RequestParams;
|
|
63
|
+
default: any;
|
|
71
64
|
};
|
|
72
65
|
colors: {
|
|
73
66
|
type?: undefined;
|
|
74
67
|
default?: undefined;
|
|
75
68
|
} | {
|
|
76
69
|
type: any;
|
|
77
|
-
default:
|
|
78
|
-
[key: string]: any;
|
|
79
|
-
} | import("../../_utils/props").RequestParams;
|
|
70
|
+
default: any;
|
|
80
71
|
};
|
|
81
72
|
legendShow: {
|
|
82
73
|
type?: undefined;
|
|
83
74
|
default?: undefined;
|
|
84
75
|
} | {
|
|
85
76
|
type: any;
|
|
86
|
-
default:
|
|
87
|
-
[key: string]: any;
|
|
88
|
-
} | import("../../_utils/props").RequestParams;
|
|
77
|
+
default: any;
|
|
89
78
|
};
|
|
90
79
|
legendLeft: {
|
|
91
80
|
type?: undefined;
|
|
92
81
|
default?: undefined;
|
|
93
82
|
} | {
|
|
94
83
|
type: any;
|
|
95
|
-
default:
|
|
96
|
-
[key: string]: any;
|
|
97
|
-
} | import("../../_utils/props").RequestParams;
|
|
84
|
+
default: any;
|
|
98
85
|
};
|
|
99
86
|
legendTop: {
|
|
100
87
|
type?: undefined;
|
|
101
88
|
default?: undefined;
|
|
102
89
|
} | {
|
|
103
90
|
type: any;
|
|
104
|
-
default:
|
|
105
|
-
[key: string]: any;
|
|
106
|
-
} | import("../../_utils/props").RequestParams;
|
|
91
|
+
default: any;
|
|
107
92
|
};
|
|
108
93
|
legendOrient: {
|
|
109
94
|
type?: undefined;
|
|
110
95
|
default?: undefined;
|
|
111
96
|
} | {
|
|
112
97
|
type: any;
|
|
113
|
-
default:
|
|
114
|
-
[key: string]: any;
|
|
115
|
-
} | import("../../_utils/props").RequestParams;
|
|
98
|
+
default: any;
|
|
116
99
|
};
|
|
117
100
|
symbolSize: {
|
|
118
101
|
type?: undefined;
|
|
119
102
|
default?: undefined;
|
|
120
103
|
} | {
|
|
121
104
|
type: any;
|
|
122
|
-
default:
|
|
123
|
-
[key: string]: any;
|
|
124
|
-
} | import("../../_utils/props").RequestParams;
|
|
105
|
+
default: any;
|
|
125
106
|
};
|
|
126
107
|
lineStyleWidth: {
|
|
127
108
|
type?: undefined;
|
|
128
109
|
default?: undefined;
|
|
129
110
|
} | {
|
|
130
111
|
type: any;
|
|
131
|
-
default:
|
|
132
|
-
[key: string]: any;
|
|
133
|
-
} | import("../../_utils/props").RequestParams;
|
|
112
|
+
default: any;
|
|
134
113
|
};
|
|
135
114
|
smooth: {
|
|
136
115
|
type?: undefined;
|
|
137
116
|
default?: undefined;
|
|
138
117
|
} | {
|
|
139
118
|
type: any;
|
|
140
|
-
default:
|
|
141
|
-
[key: string]: any;
|
|
142
|
-
} | import("../../_utils/props").RequestParams;
|
|
119
|
+
default: any;
|
|
143
120
|
};
|
|
144
121
|
xAxisSplitLineShow: {
|
|
145
122
|
type?: undefined;
|
|
146
123
|
default?: undefined;
|
|
147
124
|
} | {
|
|
148
125
|
type: any;
|
|
149
|
-
default:
|
|
150
|
-
[key: string]: any;
|
|
151
|
-
} | import("../../_utils/props").RequestParams;
|
|
126
|
+
default: any;
|
|
152
127
|
};
|
|
153
128
|
xAxisLabelColor: {
|
|
154
129
|
type?: undefined;
|
|
155
130
|
default?: undefined;
|
|
156
131
|
} | {
|
|
157
132
|
type: any;
|
|
158
|
-
default:
|
|
159
|
-
[key: string]: any;
|
|
160
|
-
} | import("../../_utils/props").RequestParams;
|
|
133
|
+
default: any;
|
|
161
134
|
};
|
|
162
135
|
xAxisLineStyleColor: {
|
|
163
136
|
type?: undefined;
|
|
164
137
|
default?: undefined;
|
|
165
138
|
} | {
|
|
166
139
|
type: any;
|
|
167
|
-
default:
|
|
168
|
-
[key: string]: any;
|
|
169
|
-
} | import("../../_utils/props").RequestParams;
|
|
140
|
+
default: any;
|
|
170
141
|
};
|
|
171
142
|
xAxisSplitLineStyleColor: {
|
|
172
143
|
type?: undefined;
|
|
173
144
|
default?: undefined;
|
|
174
145
|
} | {
|
|
175
146
|
type: any;
|
|
176
|
-
default:
|
|
177
|
-
[key: string]: any;
|
|
178
|
-
} | import("../../_utils/props").RequestParams;
|
|
147
|
+
default: any;
|
|
179
148
|
};
|
|
180
149
|
xAxisTickShow: {
|
|
181
150
|
type?: undefined;
|
|
182
151
|
default?: undefined;
|
|
183
152
|
} | {
|
|
184
153
|
type: any;
|
|
185
|
-
default:
|
|
186
|
-
[key: string]: any;
|
|
187
|
-
} | import("../../_utils/props").RequestParams;
|
|
154
|
+
default: any;
|
|
188
155
|
};
|
|
189
156
|
yAxisSplitLineShow: {
|
|
190
157
|
type?: undefined;
|
|
191
158
|
default?: undefined;
|
|
192
159
|
} | {
|
|
193
160
|
type: any;
|
|
194
|
-
default:
|
|
195
|
-
[key: string]: any;
|
|
196
|
-
} | import("../../_utils/props").RequestParams;
|
|
161
|
+
default: any;
|
|
197
162
|
};
|
|
198
163
|
yAxisSplitLineStyleColor: {
|
|
199
164
|
type?: undefined;
|
|
200
165
|
default?: undefined;
|
|
201
166
|
} | {
|
|
202
167
|
type: any;
|
|
203
|
-
default:
|
|
204
|
-
[key: string]: any;
|
|
205
|
-
} | import("../../_utils/props").RequestParams;
|
|
168
|
+
default: any;
|
|
206
169
|
};
|
|
207
170
|
yAxisLabelColor: {
|
|
208
171
|
type?: undefined;
|
|
209
172
|
default?: undefined;
|
|
210
173
|
} | {
|
|
211
174
|
type: any;
|
|
212
|
-
default:
|
|
213
|
-
[key: string]: any;
|
|
214
|
-
} | import("../../_utils/props").RequestParams;
|
|
175
|
+
default: any;
|
|
215
176
|
};
|
|
216
177
|
yAxisLineStyleColor: {
|
|
217
178
|
type?: undefined;
|
|
218
179
|
default?: undefined;
|
|
219
180
|
} | {
|
|
220
181
|
type: any;
|
|
221
|
-
default:
|
|
222
|
-
[key: string]: any;
|
|
223
|
-
} | import("../../_utils/props").RequestParams;
|
|
182
|
+
default: any;
|
|
224
183
|
};
|
|
225
184
|
yAxisLabelFormatter: {
|
|
226
185
|
type?: undefined;
|
|
227
186
|
default?: undefined;
|
|
228
187
|
} | {
|
|
229
188
|
type: any;
|
|
230
|
-
default:
|
|
231
|
-
[key: string]: any;
|
|
232
|
-
} | import("../../_utils/props").RequestParams;
|
|
189
|
+
default: any;
|
|
233
190
|
};
|
|
234
191
|
valueTypeDataFieldNames: {
|
|
235
192
|
type?: undefined;
|
|
236
193
|
default?: undefined;
|
|
237
194
|
} | {
|
|
238
195
|
type: any;
|
|
239
|
-
default:
|
|
240
|
-
[key: string]: any;
|
|
241
|
-
} | import("../../_utils/props").RequestParams;
|
|
196
|
+
default: any;
|
|
242
197
|
};
|
|
243
198
|
keyTypeDataFieldNames: {
|
|
244
199
|
type?: undefined;
|
|
245
200
|
default?: undefined;
|
|
246
201
|
} | {
|
|
247
202
|
type: any;
|
|
248
|
-
default:
|
|
249
|
-
[key: string]: any;
|
|
250
|
-
} | import("../../_utils/props").RequestParams;
|
|
203
|
+
default: any;
|
|
251
204
|
};
|
|
252
205
|
dataFieldConfigType: {
|
|
253
206
|
type?: undefined;
|
|
254
207
|
default?: undefined;
|
|
255
208
|
} | {
|
|
256
209
|
type: any;
|
|
257
|
-
default:
|
|
258
|
-
[key: string]: any;
|
|
259
|
-
} | import("../../_utils/props").RequestParams;
|
|
210
|
+
default: any;
|
|
260
211
|
};
|
|
261
212
|
gridContainLabel: {
|
|
262
213
|
type?: undefined;
|
|
263
214
|
default?: undefined;
|
|
264
215
|
} | {
|
|
265
216
|
type: any;
|
|
266
|
-
default:
|
|
267
|
-
[key: string]: any;
|
|
268
|
-
} | import("../../_utils/props").RequestParams;
|
|
217
|
+
default: any;
|
|
269
218
|
};
|
|
270
219
|
gridTop: {
|
|
271
220
|
type?: undefined;
|
|
272
221
|
default?: undefined;
|
|
273
222
|
} | {
|
|
274
223
|
type: any;
|
|
275
|
-
default:
|
|
276
|
-
[key: string]: any;
|
|
277
|
-
} | import("../../_utils/props").RequestParams;
|
|
224
|
+
default: any;
|
|
278
225
|
};
|
|
279
226
|
gridBottom: {
|
|
280
227
|
type?: undefined;
|
|
281
228
|
default?: undefined;
|
|
282
229
|
} | {
|
|
283
230
|
type: any;
|
|
284
|
-
default:
|
|
285
|
-
[key: string]: any;
|
|
286
|
-
} | import("../../_utils/props").RequestParams;
|
|
231
|
+
default: any;
|
|
287
232
|
};
|
|
288
233
|
gridLeft: {
|
|
289
234
|
type?: undefined;
|
|
290
235
|
default?: undefined;
|
|
291
236
|
} | {
|
|
292
237
|
type: any;
|
|
293
|
-
default:
|
|
294
|
-
[key: string]: any;
|
|
295
|
-
} | import("../../_utils/props").RequestParams;
|
|
238
|
+
default: any;
|
|
296
239
|
};
|
|
297
240
|
gridRight: {
|
|
298
241
|
type?: undefined;
|
|
299
242
|
default?: undefined;
|
|
300
243
|
} | {
|
|
301
244
|
type: any;
|
|
302
|
-
default:
|
|
303
|
-
|
|
304
|
-
|
|
245
|
+
default: any;
|
|
246
|
+
};
|
|
247
|
+
graphicConfig?: {
|
|
248
|
+
type?: undefined;
|
|
249
|
+
default?: undefined;
|
|
250
|
+
} | {
|
|
251
|
+
type: any;
|
|
252
|
+
default: any;
|
|
305
253
|
};
|
|
306
254
|
id: {
|
|
307
255
|
type?: undefined;
|
|
308
256
|
default?: undefined;
|
|
309
257
|
} | {
|
|
310
258
|
type: any;
|
|
311
|
-
default:
|
|
312
|
-
[key: string]: any;
|
|
313
|
-
} | import("../../_utils/props").RequestParams;
|
|
259
|
+
default: any;
|
|
314
260
|
};
|
|
315
261
|
name: {
|
|
316
262
|
type?: undefined;
|
|
317
263
|
default?: undefined;
|
|
318
264
|
} | {
|
|
319
265
|
type: any;
|
|
320
|
-
default:
|
|
321
|
-
[key: string]: any;
|
|
322
|
-
} | import("../../_utils/props").RequestParams;
|
|
266
|
+
default: any;
|
|
323
267
|
};
|
|
324
268
|
keyName: {
|
|
325
269
|
type?: undefined;
|
|
326
270
|
default?: undefined;
|
|
327
271
|
} | {
|
|
328
272
|
type: any;
|
|
329
|
-
default:
|
|
330
|
-
[key: string]: any;
|
|
331
|
-
} | import("../../_utils/props").RequestParams;
|
|
273
|
+
default: any;
|
|
332
274
|
};
|
|
333
275
|
type: {
|
|
334
276
|
type?: undefined;
|
|
335
277
|
default?: undefined;
|
|
336
278
|
} | {
|
|
337
279
|
type: any;
|
|
338
|
-
default:
|
|
339
|
-
[key: string]: any;
|
|
340
|
-
} | import("../../_utils/props").RequestParams;
|
|
280
|
+
default: any;
|
|
341
281
|
};
|
|
342
282
|
width: {
|
|
343
283
|
type?: undefined;
|
|
344
284
|
default?: undefined;
|
|
345
285
|
} | {
|
|
346
286
|
type: any;
|
|
347
|
-
default:
|
|
348
|
-
[key: string]: any;
|
|
349
|
-
} | import("../../_utils/props").RequestParams;
|
|
287
|
+
default: any;
|
|
350
288
|
};
|
|
351
289
|
height: {
|
|
352
290
|
type?: undefined;
|
|
353
291
|
default?: undefined;
|
|
354
292
|
} | {
|
|
355
293
|
type: any;
|
|
356
|
-
default:
|
|
357
|
-
[key: string]: any;
|
|
358
|
-
} | import("../../_utils/props").RequestParams;
|
|
294
|
+
default: any;
|
|
359
295
|
};
|
|
360
296
|
position: {
|
|
361
297
|
type?: undefined;
|
|
362
298
|
default?: undefined;
|
|
363
299
|
} | {
|
|
364
300
|
type: any;
|
|
365
|
-
default:
|
|
366
|
-
[key: string]: any;
|
|
367
|
-
} | import("../../_utils/props").RequestParams;
|
|
301
|
+
default: any;
|
|
368
302
|
};
|
|
369
303
|
top: {
|
|
370
304
|
type?: undefined;
|
|
371
305
|
default?: undefined;
|
|
372
306
|
} | {
|
|
373
307
|
type: any;
|
|
374
|
-
default:
|
|
375
|
-
[key: string]: any;
|
|
376
|
-
} | import("../../_utils/props").RequestParams;
|
|
308
|
+
default: any;
|
|
377
309
|
};
|
|
378
310
|
left: {
|
|
379
311
|
type?: undefined;
|
|
380
312
|
default?: undefined;
|
|
381
313
|
} | {
|
|
382
314
|
type: any;
|
|
383
|
-
default:
|
|
384
|
-
[key: string]: any;
|
|
385
|
-
} | import("../../_utils/props").RequestParams;
|
|
315
|
+
default: any;
|
|
386
316
|
};
|
|
387
317
|
zIndex: {
|
|
388
318
|
type?: undefined;
|
|
389
319
|
default?: undefined;
|
|
390
320
|
} | {
|
|
391
321
|
type: any;
|
|
392
|
-
default:
|
|
393
|
-
[key: string]: any;
|
|
394
|
-
} | import("../../_utils/props").RequestParams;
|
|
322
|
+
default: any;
|
|
395
323
|
};
|
|
396
324
|
rotate: {
|
|
397
325
|
type?: undefined;
|
|
398
326
|
default?: undefined;
|
|
399
327
|
} | {
|
|
400
328
|
type: any;
|
|
401
|
-
default:
|
|
402
|
-
[key: string]: any;
|
|
403
|
-
} | import("../../_utils/props").RequestParams;
|
|
329
|
+
default: any;
|
|
404
330
|
};
|
|
405
331
|
isShow: {
|
|
406
332
|
type?: undefined;
|
|
407
333
|
default?: undefined;
|
|
408
334
|
} | {
|
|
409
335
|
type: any;
|
|
410
|
-
default:
|
|
411
|
-
[key: string]: any;
|
|
412
|
-
} | import("../../_utils/props").RequestParams;
|
|
336
|
+
default: any;
|
|
413
337
|
};
|
|
414
338
|
isRender: {
|
|
415
339
|
type?: undefined;
|
|
416
340
|
default?: undefined;
|
|
417
341
|
} | {
|
|
418
342
|
type: any;
|
|
419
|
-
default:
|
|
420
|
-
[key: string]: any;
|
|
421
|
-
} | import("../../_utils/props").RequestParams;
|
|
343
|
+
default: any;
|
|
422
344
|
};
|
|
423
345
|
events: {
|
|
424
346
|
type?: undefined;
|
|
425
347
|
default?: undefined;
|
|
426
348
|
} | {
|
|
427
349
|
type: any;
|
|
428
|
-
default:
|
|
429
|
-
[key: string]: any;
|
|
430
|
-
} | import("../../_utils/props").RequestParams;
|
|
350
|
+
default: any;
|
|
431
351
|
};
|
|
432
352
|
requestUrl: {
|
|
433
353
|
type?: undefined;
|
|
434
354
|
default?: undefined;
|
|
435
355
|
} | {
|
|
436
356
|
type: any;
|
|
437
|
-
default:
|
|
438
|
-
[key: string]: any;
|
|
439
|
-
} | import("../../_utils/props").RequestParams;
|
|
357
|
+
default: any;
|
|
440
358
|
};
|
|
441
359
|
requestMethod: {
|
|
442
360
|
type?: undefined;
|
|
443
361
|
default?: undefined;
|
|
444
362
|
} | {
|
|
445
363
|
type: any;
|
|
446
|
-
default:
|
|
447
|
-
[key: string]: any;
|
|
448
|
-
} | import("../../_utils/props").RequestParams;
|
|
364
|
+
default: any;
|
|
449
365
|
};
|
|
450
366
|
requestHeaders: {
|
|
451
367
|
type?: undefined;
|
|
452
368
|
default?: undefined;
|
|
453
369
|
} | {
|
|
454
370
|
type: any;
|
|
455
|
-
default:
|
|
456
|
-
[key: string]: any;
|
|
457
|
-
} | import("../../_utils/props").RequestParams;
|
|
371
|
+
default: any;
|
|
458
372
|
};
|
|
459
373
|
isOpenRequestTimer: {
|
|
460
374
|
type?: undefined;
|
|
461
375
|
default?: undefined;
|
|
462
376
|
} | {
|
|
463
377
|
type: any;
|
|
464
|
-
default:
|
|
465
|
-
[key: string]: any;
|
|
466
|
-
} | import("../../_utils/props").RequestParams;
|
|
378
|
+
default: any;
|
|
467
379
|
};
|
|
468
380
|
requestInterval: {
|
|
469
381
|
type?: undefined;
|
|
470
382
|
default?: undefined;
|
|
471
383
|
} | {
|
|
472
384
|
type: any;
|
|
473
|
-
default:
|
|
474
|
-
[key: string]: any;
|
|
475
|
-
} | import("../../_utils/props").RequestParams;
|
|
385
|
+
default: any;
|
|
476
386
|
};
|
|
477
387
|
requestParams: {
|
|
478
388
|
type?: undefined;
|
|
479
389
|
default?: undefined;
|
|
480
390
|
} | {
|
|
481
391
|
type: any;
|
|
482
|
-
default:
|
|
483
|
-
[key: string]: any;
|
|
484
|
-
} | import("../../_utils/props").RequestParams;
|
|
392
|
+
default: any;
|
|
485
393
|
};
|
|
486
394
|
requestSort: {
|
|
487
395
|
type?: undefined;
|
|
488
396
|
default?: undefined;
|
|
489
397
|
} | {
|
|
490
398
|
type: any;
|
|
491
|
-
default:
|
|
492
|
-
[key: string]: any;
|
|
493
|
-
} | import("../../_utils/props").RequestParams;
|
|
399
|
+
default: any;
|
|
494
400
|
};
|
|
495
401
|
dataType: {
|
|
496
402
|
type?: undefined;
|
|
497
403
|
default?: undefined;
|
|
498
404
|
} | {
|
|
499
405
|
type: any;
|
|
500
|
-
default:
|
|
501
|
-
[key: string]: any;
|
|
502
|
-
} | import("../../_utils/props").RequestParams;
|
|
406
|
+
default: any;
|
|
503
407
|
};
|
|
504
408
|
};
|
|
505
409
|
export declare const lineEvents: string[];
|