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