@ecan-bi/datav 1.0.30 → 1.0.33
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/constant.d.ts +0 -1
- 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 +102 -0
- package/dist/graph/combo-graph/props.d.ts +70 -0
- package/dist/graph/line/Line.vue.d.ts +98 -0
- package/dist/graph/line/props.d.ts +60 -0
- package/dist/graph/pie/Pie.vue.d.ts +82 -0
- package/dist/graph/pie/props.d.ts +50 -0
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +1 -1
|
@@ -5,4 +5,3 @@ export declare const REQUEST_MODEL = "REQUEST_MODEL";
|
|
|
5
5
|
export declare const UPLOAD_PATH: any;
|
|
6
6
|
export declare const BASE_URL: any;
|
|
7
7
|
export declare const INDICATOR_URL = "http://59.56.182.79:9192/api/";
|
|
8
|
-
export declare const TEST_TOKEN = "f24951816ac99e204fe62e1181a6d21556d4471474b60366a6b465b7e00c9d49055c1ed753d8f07065d31bce7405a045888d7a52062b002327eec99fe7957af91eabc9d955afe397efee80093e972dc3948b45f8f22df4089cc327688f545788bf45a23f69daf21546108e08b3b6022eeeed185c689b739f631ce5ba9f4293880288adf52c57dae6330ae110028afab1bf29e82bd37b5a9f79a790133c596f14";
|
|
@@ -125,6 +125,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
125
|
type: any;
|
|
126
126
|
default: any;
|
|
127
127
|
};
|
|
128
|
+
yAxisLabelFormatter: {
|
|
129
|
+
type?: undefined;
|
|
130
|
+
default?: undefined;
|
|
131
|
+
} | {
|
|
132
|
+
type: any;
|
|
133
|
+
default: any;
|
|
134
|
+
};
|
|
128
135
|
valueTypeDataFieldNames: {
|
|
129
136
|
type?: undefined;
|
|
130
137
|
default?: undefined;
|
|
@@ -174,7 +181,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
174
181
|
type: any;
|
|
175
182
|
default: any;
|
|
176
183
|
};
|
|
177
|
-
|
|
184
|
+
gridContainLabel: {
|
|
178
185
|
type?: undefined;
|
|
179
186
|
default?: undefined;
|
|
180
187
|
} | {
|
|
@@ -188,14 +195,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
188
195
|
type: any;
|
|
189
196
|
default: any;
|
|
190
197
|
};
|
|
191
|
-
|
|
198
|
+
gridBottom: {
|
|
192
199
|
type?: undefined;
|
|
193
200
|
default?: undefined;
|
|
194
201
|
} | {
|
|
195
202
|
type: any;
|
|
196
203
|
default: any;
|
|
197
204
|
};
|
|
198
|
-
|
|
205
|
+
gridLeft: {
|
|
206
|
+
type?: undefined;
|
|
207
|
+
default?: undefined;
|
|
208
|
+
} | {
|
|
209
|
+
type: any;
|
|
210
|
+
default: any;
|
|
211
|
+
};
|
|
212
|
+
gridRight: {
|
|
199
213
|
type?: undefined;
|
|
200
214
|
default?: undefined;
|
|
201
215
|
} | {
|
|
@@ -377,6 +391,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
377
391
|
subtext: any;
|
|
378
392
|
left: string;
|
|
379
393
|
};
|
|
394
|
+
grid: {
|
|
395
|
+
top: any;
|
|
396
|
+
bottom: any;
|
|
397
|
+
left: any;
|
|
398
|
+
right: any;
|
|
399
|
+
containLabel: any;
|
|
400
|
+
};
|
|
380
401
|
color: any;
|
|
381
402
|
tooltip: {
|
|
382
403
|
trigger: string;
|
|
@@ -428,6 +449,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
428
449
|
};
|
|
429
450
|
axisLabel: {
|
|
430
451
|
color: any;
|
|
452
|
+
formatter: any;
|
|
431
453
|
};
|
|
432
454
|
axisLine: {
|
|
433
455
|
lineStyle: {
|
|
@@ -435,7 +457,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
435
457
|
};
|
|
436
458
|
};
|
|
437
459
|
};
|
|
438
|
-
grid: {};
|
|
439
460
|
series: any[];
|
|
440
461
|
}>;
|
|
441
462
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -461,6 +482,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
461
482
|
yAxisSplitLineStyleColor?: unknown;
|
|
462
483
|
yAxisLabelColor?: unknown;
|
|
463
484
|
yAxisLineStyleColor?: unknown;
|
|
485
|
+
yAxisLabelFormatter?: unknown;
|
|
464
486
|
valueTypeDataFieldNames?: unknown;
|
|
465
487
|
keyTypeDataFieldNames?: unknown;
|
|
466
488
|
dataFieldConfigType?: unknown;
|
|
@@ -468,10 +490,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
468
490
|
tooltipTrigger?: unknown;
|
|
469
491
|
tooltipTextStyleColor?: unknown;
|
|
470
492
|
tooltipFormatter?: unknown;
|
|
471
|
-
|
|
493
|
+
gridContainLabel?: unknown;
|
|
472
494
|
gridTop?: unknown;
|
|
473
|
-
gridRight?: unknown;
|
|
474
495
|
gridBottom?: unknown;
|
|
496
|
+
gridLeft?: unknown;
|
|
497
|
+
gridRight?: unknown;
|
|
475
498
|
barWidth?: unknown;
|
|
476
499
|
graphicConfig?: unknown;
|
|
477
500
|
id?: unknown;
|
|
@@ -516,6 +539,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
516
539
|
yAxisSplitLineStyleColor?: any;
|
|
517
540
|
yAxisLabelColor?: any;
|
|
518
541
|
yAxisLineStyleColor?: any;
|
|
542
|
+
yAxisLabelFormatter?: any;
|
|
519
543
|
valueTypeDataFieldNames?: any;
|
|
520
544
|
keyTypeDataFieldNames?: any;
|
|
521
545
|
dataFieldConfigType?: any;
|
|
@@ -523,10 +547,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
523
547
|
tooltipTrigger?: any;
|
|
524
548
|
tooltipTextStyleColor?: any;
|
|
525
549
|
tooltipFormatter?: any;
|
|
526
|
-
|
|
550
|
+
gridContainLabel?: any;
|
|
527
551
|
gridTop?: any;
|
|
528
|
-
gridRight?: any;
|
|
529
552
|
gridBottom?: any;
|
|
553
|
+
gridLeft?: any;
|
|
554
|
+
gridRight?: any;
|
|
530
555
|
barWidth?: any;
|
|
531
556
|
graphicConfig?: any;
|
|
532
557
|
id?: any;
|
|
@@ -18,6 +18,7 @@ export interface BarProps extends Props {
|
|
|
18
18
|
yAxisSplitLineStyleColor: string;
|
|
19
19
|
yAxisLabelColor: string;
|
|
20
20
|
yAxisLineStyleColor: string;
|
|
21
|
+
yAxisLabelFormatter: string;
|
|
21
22
|
valueTypeDataFieldNames: ValueTypeDataFieldNames;
|
|
22
23
|
keyTypeDataFieldNames: KeyTypeDataFieldNames;
|
|
23
24
|
dataFieldConfigType: 'key' | 'value';
|
|
@@ -25,10 +26,11 @@ export interface BarProps extends Props {
|
|
|
25
26
|
tooltipTrigger: 'item' | 'axis' | 'none';
|
|
26
27
|
tooltipTextStyleColor: string;
|
|
27
28
|
tooltipFormatter: string;
|
|
28
|
-
|
|
29
|
+
gridContainLabel: boolean;
|
|
29
30
|
gridTop: string;
|
|
30
|
-
gridRight: string;
|
|
31
31
|
gridBottom: string;
|
|
32
|
+
gridLeft: string;
|
|
33
|
+
gridRight: string;
|
|
32
34
|
barWidth: string;
|
|
33
35
|
graphicConfig?: any;
|
|
34
36
|
}
|
|
@@ -160,6 +162,13 @@ export declare const barComponentProps: {
|
|
|
160
162
|
type: any;
|
|
161
163
|
default: any;
|
|
162
164
|
};
|
|
165
|
+
yAxisLabelFormatter: {
|
|
166
|
+
type?: undefined;
|
|
167
|
+
default?: undefined;
|
|
168
|
+
} | {
|
|
169
|
+
type: any;
|
|
170
|
+
default: any;
|
|
171
|
+
};
|
|
163
172
|
valueTypeDataFieldNames: {
|
|
164
173
|
type?: undefined;
|
|
165
174
|
default?: undefined;
|
|
@@ -209,7 +218,7 @@ export declare const barComponentProps: {
|
|
|
209
218
|
type: any;
|
|
210
219
|
default: any;
|
|
211
220
|
};
|
|
212
|
-
|
|
221
|
+
gridContainLabel: {
|
|
213
222
|
type?: undefined;
|
|
214
223
|
default?: undefined;
|
|
215
224
|
} | {
|
|
@@ -223,14 +232,21 @@ export declare const barComponentProps: {
|
|
|
223
232
|
type: any;
|
|
224
233
|
default: any;
|
|
225
234
|
};
|
|
226
|
-
|
|
235
|
+
gridBottom: {
|
|
227
236
|
type?: undefined;
|
|
228
237
|
default?: undefined;
|
|
229
238
|
} | {
|
|
230
239
|
type: any;
|
|
231
240
|
default: any;
|
|
232
241
|
};
|
|
233
|
-
|
|
242
|
+
gridLeft: {
|
|
243
|
+
type?: undefined;
|
|
244
|
+
default?: undefined;
|
|
245
|
+
} | {
|
|
246
|
+
type: any;
|
|
247
|
+
default: any;
|
|
248
|
+
};
|
|
249
|
+
gridRight: {
|
|
234
250
|
type?: undefined;
|
|
235
251
|
default?: undefined;
|
|
236
252
|
} | {
|
|
@@ -351,6 +351,71 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
351
351
|
[key: string]: any;
|
|
352
352
|
} | import("src/_utils/props").RequestParams;
|
|
353
353
|
};
|
|
354
|
+
gridContainLabel: {
|
|
355
|
+
type?: undefined;
|
|
356
|
+
default?: undefined;
|
|
357
|
+
} | {
|
|
358
|
+
type: any;
|
|
359
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
360
|
+
[key: string]: any;
|
|
361
|
+
}[] | {
|
|
362
|
+
[key: string]: any;
|
|
363
|
+
}[] | Events | {
|
|
364
|
+
[key: string]: any;
|
|
365
|
+
} | import("src/_utils/props").RequestParams;
|
|
366
|
+
};
|
|
367
|
+
gridTop: {
|
|
368
|
+
type?: undefined;
|
|
369
|
+
default?: undefined;
|
|
370
|
+
} | {
|
|
371
|
+
type: any;
|
|
372
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
373
|
+
[key: string]: any;
|
|
374
|
+
}[] | {
|
|
375
|
+
[key: string]: any;
|
|
376
|
+
}[] | Events | {
|
|
377
|
+
[key: string]: any;
|
|
378
|
+
} | import("src/_utils/props").RequestParams;
|
|
379
|
+
};
|
|
380
|
+
gridBottom: {
|
|
381
|
+
type?: undefined;
|
|
382
|
+
default?: undefined;
|
|
383
|
+
} | {
|
|
384
|
+
type: any;
|
|
385
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
386
|
+
[key: string]: any;
|
|
387
|
+
}[] | {
|
|
388
|
+
[key: string]: any;
|
|
389
|
+
}[] | Events | {
|
|
390
|
+
[key: string]: any;
|
|
391
|
+
} | import("src/_utils/props").RequestParams;
|
|
392
|
+
};
|
|
393
|
+
gridLeft: {
|
|
394
|
+
type?: undefined;
|
|
395
|
+
default?: undefined;
|
|
396
|
+
} | {
|
|
397
|
+
type: any;
|
|
398
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
399
|
+
[key: string]: any;
|
|
400
|
+
}[] | {
|
|
401
|
+
[key: string]: any;
|
|
402
|
+
}[] | Events | {
|
|
403
|
+
[key: string]: any;
|
|
404
|
+
} | import("src/_utils/props").RequestParams;
|
|
405
|
+
};
|
|
406
|
+
gridRight: {
|
|
407
|
+
type?: undefined;
|
|
408
|
+
default?: undefined;
|
|
409
|
+
} | {
|
|
410
|
+
type: any;
|
|
411
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
412
|
+
[key: string]: any;
|
|
413
|
+
}[] | {
|
|
414
|
+
[key: string]: any;
|
|
415
|
+
}[] | Events | {
|
|
416
|
+
[key: string]: any;
|
|
417
|
+
} | import("src/_utils/props").RequestParams;
|
|
418
|
+
};
|
|
354
419
|
id: {
|
|
355
420
|
type?: undefined;
|
|
356
421
|
default?: undefined;
|
|
@@ -649,6 +714,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
649
714
|
};
|
|
650
715
|
left: string;
|
|
651
716
|
};
|
|
717
|
+
grid: {
|
|
718
|
+
top: string | number | boolean | {
|
|
719
|
+
[key: string]: any;
|
|
720
|
+
};
|
|
721
|
+
bottom: string | number | boolean | {
|
|
722
|
+
[key: string]: any;
|
|
723
|
+
};
|
|
724
|
+
left: string | number | boolean | {
|
|
725
|
+
[key: string]: any;
|
|
726
|
+
};
|
|
727
|
+
right: string | number | boolean | {
|
|
728
|
+
[key: string]: any;
|
|
729
|
+
};
|
|
730
|
+
containLabel: string | number | boolean | {
|
|
731
|
+
[key: string]: any;
|
|
732
|
+
};
|
|
733
|
+
};
|
|
652
734
|
color: string | number | boolean | {
|
|
653
735
|
[key: string]: any;
|
|
654
736
|
};
|
|
@@ -776,6 +858,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
776
858
|
seriesTypes?: unknown;
|
|
777
859
|
dataFieldConfigType?: unknown;
|
|
778
860
|
yAxis?: unknown;
|
|
861
|
+
gridContainLabel?: unknown;
|
|
862
|
+
gridTop?: unknown;
|
|
863
|
+
gridBottom?: unknown;
|
|
864
|
+
gridLeft?: unknown;
|
|
865
|
+
gridRight?: unknown;
|
|
779
866
|
id?: unknown;
|
|
780
867
|
name?: unknown;
|
|
781
868
|
keyName?: unknown;
|
|
@@ -883,6 +970,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
883
970
|
yAxis?: string | number | boolean | {
|
|
884
971
|
[key: string]: any;
|
|
885
972
|
};
|
|
973
|
+
gridContainLabel?: string | number | boolean | {
|
|
974
|
+
[key: string]: any;
|
|
975
|
+
};
|
|
976
|
+
gridTop?: string | number | boolean | {
|
|
977
|
+
[key: string]: any;
|
|
978
|
+
};
|
|
979
|
+
gridBottom?: string | number | boolean | {
|
|
980
|
+
[key: string]: any;
|
|
981
|
+
};
|
|
982
|
+
gridLeft?: string | number | boolean | {
|
|
983
|
+
[key: string]: any;
|
|
984
|
+
};
|
|
985
|
+
gridRight?: string | number | boolean | {
|
|
986
|
+
[key: string]: any;
|
|
987
|
+
};
|
|
886
988
|
id?: string | number | boolean | {
|
|
887
989
|
[key: string]: any;
|
|
888
990
|
};
|
|
@@ -31,6 +31,11 @@ export interface ComboGraphProps extends Props {
|
|
|
31
31
|
yAxis: {
|
|
32
32
|
[key: string]: any;
|
|
33
33
|
}[];
|
|
34
|
+
gridContainLabel: boolean;
|
|
35
|
+
gridTop: string;
|
|
36
|
+
gridBottom: string;
|
|
37
|
+
gridLeft: string;
|
|
38
|
+
gridRight: string;
|
|
34
39
|
}
|
|
35
40
|
export declare const comboGraphProps: ComboGraphProps;
|
|
36
41
|
export declare const comboGraphComponentProps: {
|
|
@@ -385,6 +390,71 @@ export declare const comboGraphComponentProps: {
|
|
|
385
390
|
[key: string]: any;
|
|
386
391
|
} | import("../../_utils/props").RequestParams;
|
|
387
392
|
};
|
|
393
|
+
gridContainLabel: {
|
|
394
|
+
type?: undefined;
|
|
395
|
+
default?: undefined;
|
|
396
|
+
} | {
|
|
397
|
+
type: any;
|
|
398
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
399
|
+
[key: string]: any;
|
|
400
|
+
}[] | {
|
|
401
|
+
[key: string]: any;
|
|
402
|
+
}[] | import("../../_utils/props").Events | {
|
|
403
|
+
[key: string]: any;
|
|
404
|
+
} | import("../../_utils/props").RequestParams;
|
|
405
|
+
};
|
|
406
|
+
gridTop: {
|
|
407
|
+
type?: undefined;
|
|
408
|
+
default?: undefined;
|
|
409
|
+
} | {
|
|
410
|
+
type: any;
|
|
411
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
412
|
+
[key: string]: any;
|
|
413
|
+
}[] | {
|
|
414
|
+
[key: string]: any;
|
|
415
|
+
}[] | import("../../_utils/props").Events | {
|
|
416
|
+
[key: string]: any;
|
|
417
|
+
} | import("../../_utils/props").RequestParams;
|
|
418
|
+
};
|
|
419
|
+
gridBottom: {
|
|
420
|
+
type?: undefined;
|
|
421
|
+
default?: undefined;
|
|
422
|
+
} | {
|
|
423
|
+
type: any;
|
|
424
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
425
|
+
[key: string]: any;
|
|
426
|
+
}[] | {
|
|
427
|
+
[key: string]: any;
|
|
428
|
+
}[] | import("../../_utils/props").Events | {
|
|
429
|
+
[key: string]: any;
|
|
430
|
+
} | import("../../_utils/props").RequestParams;
|
|
431
|
+
};
|
|
432
|
+
gridLeft: {
|
|
433
|
+
type?: undefined;
|
|
434
|
+
default?: undefined;
|
|
435
|
+
} | {
|
|
436
|
+
type: any;
|
|
437
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
438
|
+
[key: string]: any;
|
|
439
|
+
}[] | {
|
|
440
|
+
[key: string]: any;
|
|
441
|
+
}[] | import("../../_utils/props").Events | {
|
|
442
|
+
[key: string]: any;
|
|
443
|
+
} | import("../../_utils/props").RequestParams;
|
|
444
|
+
};
|
|
445
|
+
gridRight: {
|
|
446
|
+
type?: undefined;
|
|
447
|
+
default?: undefined;
|
|
448
|
+
} | {
|
|
449
|
+
type: any;
|
|
450
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | {
|
|
451
|
+
[key: string]: any;
|
|
452
|
+
}[] | {
|
|
453
|
+
[key: string]: any;
|
|
454
|
+
}[] | import("../../_utils/props").Events | {
|
|
455
|
+
[key: string]: any;
|
|
456
|
+
} | import("../../_utils/props").RequestParams;
|
|
457
|
+
};
|
|
388
458
|
id: {
|
|
389
459
|
type?: undefined;
|
|
390
460
|
default?: undefined;
|
|
@@ -189,6 +189,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
189
189
|
[key: string]: any;
|
|
190
190
|
} | import("src/_utils/props").RequestParams;
|
|
191
191
|
};
|
|
192
|
+
yAxisLabelFormatter: {
|
|
193
|
+
type?: undefined;
|
|
194
|
+
default?: undefined;
|
|
195
|
+
} | {
|
|
196
|
+
type: any;
|
|
197
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
|
|
198
|
+
[key: string]: any;
|
|
199
|
+
} | import("src/_utils/props").RequestParams;
|
|
200
|
+
};
|
|
192
201
|
valueTypeDataFieldNames: {
|
|
193
202
|
type?: undefined;
|
|
194
203
|
default?: undefined;
|
|
@@ -216,6 +225,51 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
216
225
|
[key: string]: any;
|
|
217
226
|
} | import("src/_utils/props").RequestParams;
|
|
218
227
|
};
|
|
228
|
+
gridContainLabel: {
|
|
229
|
+
type?: undefined;
|
|
230
|
+
default?: undefined;
|
|
231
|
+
} | {
|
|
232
|
+
type: any;
|
|
233
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
|
|
234
|
+
[key: string]: any;
|
|
235
|
+
} | import("src/_utils/props").RequestParams;
|
|
236
|
+
};
|
|
237
|
+
gridTop: {
|
|
238
|
+
type?: undefined;
|
|
239
|
+
default?: undefined;
|
|
240
|
+
} | {
|
|
241
|
+
type: any;
|
|
242
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
|
|
243
|
+
[key: string]: any;
|
|
244
|
+
} | import("src/_utils/props").RequestParams;
|
|
245
|
+
};
|
|
246
|
+
gridBottom: {
|
|
247
|
+
type?: undefined;
|
|
248
|
+
default?: undefined;
|
|
249
|
+
} | {
|
|
250
|
+
type: any;
|
|
251
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
|
|
252
|
+
[key: string]: any;
|
|
253
|
+
} | import("src/_utils/props").RequestParams;
|
|
254
|
+
};
|
|
255
|
+
gridLeft: {
|
|
256
|
+
type?: undefined;
|
|
257
|
+
default?: undefined;
|
|
258
|
+
} | {
|
|
259
|
+
type: any;
|
|
260
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
|
|
261
|
+
[key: string]: any;
|
|
262
|
+
} | import("src/_utils/props").RequestParams;
|
|
263
|
+
};
|
|
264
|
+
gridRight: {
|
|
265
|
+
type?: undefined;
|
|
266
|
+
default?: undefined;
|
|
267
|
+
} | {
|
|
268
|
+
type: any;
|
|
269
|
+
default: string | number | boolean | string[] | import("src/_utils/props").Data | ValueTypeDataFieldNames | KeyTypeDataFieldNames | Events | {
|
|
270
|
+
[key: string]: any;
|
|
271
|
+
} | import("src/_utils/props").RequestParams;
|
|
272
|
+
};
|
|
219
273
|
id: {
|
|
220
274
|
type?: undefined;
|
|
221
275
|
default?: undefined;
|
|
@@ -425,6 +479,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
425
479
|
};
|
|
426
480
|
left: string;
|
|
427
481
|
};
|
|
482
|
+
grid: {
|
|
483
|
+
top: string | number | boolean | {
|
|
484
|
+
[key: string]: any;
|
|
485
|
+
};
|
|
486
|
+
bottom: string | number | boolean | {
|
|
487
|
+
[key: string]: any;
|
|
488
|
+
};
|
|
489
|
+
left: string | number | boolean | {
|
|
490
|
+
[key: string]: any;
|
|
491
|
+
};
|
|
492
|
+
right: string | number | boolean | {
|
|
493
|
+
[key: string]: any;
|
|
494
|
+
};
|
|
495
|
+
containLabel: string | number | boolean | {
|
|
496
|
+
[key: string]: any;
|
|
497
|
+
};
|
|
498
|
+
};
|
|
428
499
|
color: string | number | boolean | {
|
|
429
500
|
[key: string]: any;
|
|
430
501
|
};
|
|
@@ -477,6 +548,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
477
548
|
color: string | number | boolean | {
|
|
478
549
|
[key: string]: any;
|
|
479
550
|
};
|
|
551
|
+
formatter: string | number | boolean | {
|
|
552
|
+
[key: string]: any;
|
|
553
|
+
};
|
|
480
554
|
};
|
|
481
555
|
axisLine: {
|
|
482
556
|
lineStyle: {
|
|
@@ -532,9 +606,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
532
606
|
yAxisSplitLineStyleColor?: unknown;
|
|
533
607
|
yAxisLabelColor?: unknown;
|
|
534
608
|
yAxisLineStyleColor?: unknown;
|
|
609
|
+
yAxisLabelFormatter?: unknown;
|
|
535
610
|
valueTypeDataFieldNames?: unknown;
|
|
536
611
|
keyTypeDataFieldNames?: unknown;
|
|
537
612
|
dataFieldConfigType?: unknown;
|
|
613
|
+
gridContainLabel?: unknown;
|
|
614
|
+
gridTop?: unknown;
|
|
615
|
+
gridBottom?: unknown;
|
|
616
|
+
gridLeft?: unknown;
|
|
617
|
+
gridRight?: unknown;
|
|
538
618
|
id?: unknown;
|
|
539
619
|
name?: unknown;
|
|
540
620
|
keyName?: unknown;
|
|
@@ -624,6 +704,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
624
704
|
yAxisLineStyleColor?: string | number | boolean | {
|
|
625
705
|
[key: string]: any;
|
|
626
706
|
};
|
|
707
|
+
yAxisLabelFormatter?: string | number | boolean | {
|
|
708
|
+
[key: string]: any;
|
|
709
|
+
};
|
|
627
710
|
valueTypeDataFieldNames?: string | number | boolean | {
|
|
628
711
|
[key: string]: any;
|
|
629
712
|
};
|
|
@@ -633,6 +716,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
633
716
|
dataFieldConfigType?: string | number | boolean | {
|
|
634
717
|
[key: string]: any;
|
|
635
718
|
};
|
|
719
|
+
gridContainLabel?: string | number | boolean | {
|
|
720
|
+
[key: string]: any;
|
|
721
|
+
};
|
|
722
|
+
gridTop?: string | number | boolean | {
|
|
723
|
+
[key: string]: any;
|
|
724
|
+
};
|
|
725
|
+
gridBottom?: string | number | boolean | {
|
|
726
|
+
[key: string]: any;
|
|
727
|
+
};
|
|
728
|
+
gridLeft?: string | number | boolean | {
|
|
729
|
+
[key: string]: any;
|
|
730
|
+
};
|
|
731
|
+
gridRight?: string | number | boolean | {
|
|
732
|
+
[key: string]: any;
|
|
733
|
+
};
|
|
636
734
|
id?: string | number | boolean | {
|
|
637
735
|
[key: string]: any;
|
|
638
736
|
};
|
|
@@ -21,9 +21,15 @@ 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;
|
|
27
33
|
}
|
|
28
34
|
export declare const lineProps: LineProps;
|
|
29
35
|
export declare const lineComponentProps: {
|
|
@@ -216,6 +222,15 @@ export declare const lineComponentProps: {
|
|
|
216
222
|
[key: string]: any;
|
|
217
223
|
} | import("../../_utils/props").RequestParams;
|
|
218
224
|
};
|
|
225
|
+
yAxisLabelFormatter: {
|
|
226
|
+
type?: undefined;
|
|
227
|
+
default?: undefined;
|
|
228
|
+
} | {
|
|
229
|
+
type: any;
|
|
230
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
231
|
+
[key: string]: any;
|
|
232
|
+
} | import("../../_utils/props").RequestParams;
|
|
233
|
+
};
|
|
219
234
|
valueTypeDataFieldNames: {
|
|
220
235
|
type?: undefined;
|
|
221
236
|
default?: undefined;
|
|
@@ -243,6 +258,51 @@ export declare const lineComponentProps: {
|
|
|
243
258
|
[key: string]: any;
|
|
244
259
|
} | import("../../_utils/props").RequestParams;
|
|
245
260
|
};
|
|
261
|
+
gridContainLabel: {
|
|
262
|
+
type?: undefined;
|
|
263
|
+
default?: undefined;
|
|
264
|
+
} | {
|
|
265
|
+
type: any;
|
|
266
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
267
|
+
[key: string]: any;
|
|
268
|
+
} | import("../../_utils/props").RequestParams;
|
|
269
|
+
};
|
|
270
|
+
gridTop: {
|
|
271
|
+
type?: undefined;
|
|
272
|
+
default?: undefined;
|
|
273
|
+
} | {
|
|
274
|
+
type: any;
|
|
275
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
276
|
+
[key: string]: any;
|
|
277
|
+
} | import("../../_utils/props").RequestParams;
|
|
278
|
+
};
|
|
279
|
+
gridBottom: {
|
|
280
|
+
type?: undefined;
|
|
281
|
+
default?: undefined;
|
|
282
|
+
} | {
|
|
283
|
+
type: any;
|
|
284
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
285
|
+
[key: string]: any;
|
|
286
|
+
} | import("../../_utils/props").RequestParams;
|
|
287
|
+
};
|
|
288
|
+
gridLeft: {
|
|
289
|
+
type?: undefined;
|
|
290
|
+
default?: undefined;
|
|
291
|
+
} | {
|
|
292
|
+
type: any;
|
|
293
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
294
|
+
[key: string]: any;
|
|
295
|
+
} | import("../../_utils/props").RequestParams;
|
|
296
|
+
};
|
|
297
|
+
gridRight: {
|
|
298
|
+
type?: undefined;
|
|
299
|
+
default?: undefined;
|
|
300
|
+
} | {
|
|
301
|
+
type: any;
|
|
302
|
+
default: string | number | boolean | Data | string[] | ValueTypeDataFieldNames | KeyTypeDataFieldNames | import("../../_utils/props").Events | {
|
|
303
|
+
[key: string]: any;
|
|
304
|
+
} | import("../../_utils/props").RequestParams;
|
|
305
|
+
};
|
|
246
306
|
id: {
|
|
247
307
|
type?: undefined;
|
|
248
308
|
default?: undefined;
|