@ecan-bi/datav 1.5.95 → 1.5.97

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.
@@ -0,0 +1,343 @@
1
+ import { Props } from '../../utils/props';
2
+ export interface GaugeProps extends Props {
3
+ data: any;
4
+ graphicConfig: {
5
+ [key: string]: any;
6
+ };
7
+ graphicType: string;
8
+ progressWidth: number;
9
+ progressColor: string;
10
+ axisLabelFontSize: string;
11
+ axisLabelFormatter: string;
12
+ axisMin: number;
13
+ axisMax: number;
14
+ detailFontSize: string;
15
+ detailFormatter: string;
16
+ detailColor: string;
17
+ centerLeft: string;
18
+ centerTop: string;
19
+ radius: string;
20
+ noDataTip: boolean;
21
+ tipText: string;
22
+ tipTextColor: string;
23
+ tipTextFontSize: string;
24
+ toolboxDownloadShow: boolean;
25
+ toolboxDataZoomShow: boolean;
26
+ toolboxInfoShow: boolean;
27
+ toolboxShow: boolean;
28
+ toolboxOrient: 'horizontal' | 'vertical';
29
+ toolboxItemSize: number;
30
+ toolboxItemGap: number;
31
+ toolboxLeft: 'left' | 'center' | 'right';
32
+ toolboxTop: 'top' | 'middle' | 'bottom';
33
+ toolboxIconStyleBorderColor: string;
34
+ toolboxDownloadUrl: string;
35
+ toolboxInfoText: string;
36
+ titleText: string;
37
+ titleSubtext: string;
38
+ titleFontSize: string;
39
+ titleColor: string;
40
+ fontWeight: number;
41
+ textAlign: 'left' | 'right' | 'center';
42
+ warningRule: string;
43
+ }
44
+ export declare const gaugeProps: GaugeProps;
45
+ export declare const gaugeComponentProps: {
46
+ data: {
47
+ type?: import("vue").PropType<any>;
48
+ default?: any;
49
+ };
50
+ graphicConfig: {
51
+ type?: import("vue").PropType<{
52
+ [key: string]: any;
53
+ }>;
54
+ default?: {
55
+ [key: string]: any;
56
+ };
57
+ };
58
+ graphicType: {
59
+ type?: import("vue").PropType<string>;
60
+ default?: string;
61
+ };
62
+ progressWidth: {
63
+ type?: import("vue").PropType<number>;
64
+ default?: number;
65
+ };
66
+ progressColor: {
67
+ type?: import("vue").PropType<string>;
68
+ default?: string;
69
+ };
70
+ axisLabelFontSize: {
71
+ type?: import("vue").PropType<string>;
72
+ default?: string;
73
+ };
74
+ axisLabelFormatter: {
75
+ type?: import("vue").PropType<string>;
76
+ default?: string;
77
+ };
78
+ axisMin: {
79
+ type?: import("vue").PropType<number>;
80
+ default?: number;
81
+ };
82
+ axisMax: {
83
+ type?: import("vue").PropType<number>;
84
+ default?: number;
85
+ };
86
+ detailFontSize: {
87
+ type?: import("vue").PropType<string>;
88
+ default?: string;
89
+ };
90
+ detailFormatter: {
91
+ type?: import("vue").PropType<string>;
92
+ default?: string;
93
+ };
94
+ detailColor: {
95
+ type?: import("vue").PropType<string>;
96
+ default?: string;
97
+ };
98
+ centerLeft: {
99
+ type?: import("vue").PropType<string>;
100
+ default?: string;
101
+ };
102
+ centerTop: {
103
+ type?: import("vue").PropType<string>;
104
+ default?: string;
105
+ };
106
+ radius: {
107
+ type?: import("vue").PropType<string>;
108
+ default?: string;
109
+ };
110
+ noDataTip: {
111
+ type?: import("vue").PropType<boolean>;
112
+ default?: boolean;
113
+ };
114
+ tipText: {
115
+ type?: import("vue").PropType<string>;
116
+ default?: string;
117
+ };
118
+ tipTextColor: {
119
+ type?: import("vue").PropType<string>;
120
+ default?: string;
121
+ };
122
+ tipTextFontSize: {
123
+ type?: import("vue").PropType<string>;
124
+ default?: string;
125
+ };
126
+ toolboxDownloadShow: {
127
+ type?: import("vue").PropType<boolean>;
128
+ default?: boolean;
129
+ };
130
+ toolboxDataZoomShow: {
131
+ type?: import("vue").PropType<boolean>;
132
+ default?: boolean;
133
+ };
134
+ toolboxInfoShow: {
135
+ type?: import("vue").PropType<boolean>;
136
+ default?: boolean;
137
+ };
138
+ toolboxShow: {
139
+ type?: import("vue").PropType<boolean>;
140
+ default?: boolean;
141
+ };
142
+ toolboxOrient: {
143
+ type?: import("vue").PropType<"vertical" | "horizontal">;
144
+ default?: "vertical" | "horizontal";
145
+ };
146
+ toolboxItemSize: {
147
+ type?: import("vue").PropType<number>;
148
+ default?: number;
149
+ };
150
+ toolboxItemGap: {
151
+ type?: import("vue").PropType<number>;
152
+ default?: number;
153
+ };
154
+ toolboxLeft: {
155
+ type?: import("vue").PropType<"left" | "center" | "right">;
156
+ default?: "left" | "center" | "right";
157
+ };
158
+ toolboxTop: {
159
+ type?: import("vue").PropType<"top" | "bottom" | "middle">;
160
+ default?: "top" | "bottom" | "middle";
161
+ };
162
+ toolboxIconStyleBorderColor: {
163
+ type?: import("vue").PropType<string>;
164
+ default?: string;
165
+ };
166
+ toolboxDownloadUrl: {
167
+ type?: import("vue").PropType<string>;
168
+ default?: string;
169
+ };
170
+ toolboxInfoText: {
171
+ type?: import("vue").PropType<string>;
172
+ default?: string;
173
+ };
174
+ titleText: {
175
+ type?: import("vue").PropType<string>;
176
+ default?: string;
177
+ };
178
+ titleSubtext: {
179
+ type?: import("vue").PropType<string>;
180
+ default?: string;
181
+ };
182
+ titleFontSize: {
183
+ type?: import("vue").PropType<string>;
184
+ default?: string;
185
+ };
186
+ titleColor: {
187
+ type?: import("vue").PropType<string>;
188
+ default?: string;
189
+ };
190
+ fontWeight: {
191
+ type?: import("vue").PropType<number>;
192
+ default?: number;
193
+ };
194
+ textAlign: {
195
+ type?: import("vue").PropType<"left" | "center" | "right">;
196
+ default?: "left" | "center" | "right";
197
+ };
198
+ warningRule: {
199
+ type?: import("vue").PropType<string>;
200
+ default?: string;
201
+ };
202
+ id: {
203
+ type?: import("vue").PropType<string>;
204
+ default?: string;
205
+ };
206
+ name: {
207
+ type?: import("vue").PropType<string>;
208
+ default?: string;
209
+ };
210
+ keyName: {
211
+ type?: import("vue").PropType<string>;
212
+ default?: string;
213
+ };
214
+ type: {
215
+ type?: import("vue").PropType<string>;
216
+ default?: string;
217
+ };
218
+ width: {
219
+ type?: import("vue").PropType<string>;
220
+ default?: string;
221
+ };
222
+ height: {
223
+ type?: import("vue").PropType<string>;
224
+ default?: string;
225
+ };
226
+ position: {
227
+ type?: import("vue").PropType<string>;
228
+ default?: string;
229
+ };
230
+ top: {
231
+ type?: import("vue").PropType<string>;
232
+ default?: string;
233
+ };
234
+ left: {
235
+ type?: import("vue").PropType<string>;
236
+ default?: string;
237
+ };
238
+ zIndex: {
239
+ type?: import("vue").PropType<number>;
240
+ default?: number;
241
+ };
242
+ rotate: {
243
+ type?: import("vue").PropType<string>;
244
+ default?: string;
245
+ };
246
+ isShow: {
247
+ type?: import("vue").PropType<boolean>;
248
+ default?: boolean;
249
+ };
250
+ isRender: {
251
+ type?: import("vue").PropType<boolean>;
252
+ default?: boolean;
253
+ };
254
+ events: {
255
+ type?: import("vue").PropType<import('../../utils/props').Events>;
256
+ default?: import('../../utils/props').Events;
257
+ };
258
+ requestUrl: {
259
+ type?: import("vue").PropType<string>;
260
+ default?: string;
261
+ };
262
+ requestMethod: {
263
+ type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
264
+ default?: import('../../utils/props').RequestMethod;
265
+ };
266
+ requestHeaders: {
267
+ type?: import("vue").PropType<string>;
268
+ default?: string;
269
+ };
270
+ isOpenRequestTimer: {
271
+ type?: import("vue").PropType<boolean>;
272
+ default?: boolean;
273
+ };
274
+ isViewRedrawing: {
275
+ type?: import("vue").PropType<boolean>;
276
+ default?: boolean;
277
+ };
278
+ requestInterval: {
279
+ type?: import("vue").PropType<number>;
280
+ default?: number;
281
+ };
282
+ requestParams: {
283
+ type?: import("vue").PropType<import('../../utils/props').RequestParams>;
284
+ default?: import('../../utils/props').RequestParams;
285
+ };
286
+ requestSort: {
287
+ type?: import("vue").PropType<number>;
288
+ default?: number;
289
+ };
290
+ dataType: {
291
+ type?: import("vue").PropType<"indicator" | "request" | "component" | "static">;
292
+ default?: "indicator" | "request" | "component" | "static";
293
+ };
294
+ scale?: {
295
+ type?: import("vue").PropType<number>;
296
+ default?: number;
297
+ };
298
+ requestParamsMode: {
299
+ type?: import("vue").PropType<"2" | "1">;
300
+ default?: "2" | "1";
301
+ };
302
+ customRequestParams: {
303
+ type?: import("vue").PropType<string>;
304
+ default?: string;
305
+ };
306
+ dataSetParam?: {
307
+ type?: import("vue").PropType<any>;
308
+ default?: any;
309
+ };
310
+ requestType?: {
311
+ type?: import("vue").PropType<any>;
312
+ default?: any;
313
+ };
314
+ componentDoc?: {
315
+ type?: import("vue").PropType<null>;
316
+ default?: null;
317
+ };
318
+ extendData?: {
319
+ type?: import("vue").PropType<{
320
+ [key: string]: any;
321
+ }>;
322
+ default?: {
323
+ [key: string]: any;
324
+ };
325
+ };
326
+ isShowIndDetail?: {
327
+ type?: import("vue").PropType<boolean>;
328
+ default?: boolean;
329
+ };
330
+ isShowTrend?: {
331
+ type?: import("vue").PropType<boolean>;
332
+ default?: boolean;
333
+ };
334
+ indDetailIconColor?: {
335
+ type?: import("vue").PropType<string>;
336
+ default?: string;
337
+ };
338
+ indDetailIconFontSize?: {
339
+ type?: import("vue").PropType<string>;
340
+ default?: string;
341
+ };
342
+ };
343
+ export declare const gaugeEvents: string[];
@@ -5,3 +5,5 @@ export * from './scatter';
5
5
  export * from './custom-graph';
6
6
  export * from './combo-graph';
7
7
  export * from './radar';
8
+ export * from './gauge';
9
+ export * from './boxplot';
@@ -0,0 +1,363 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ data: {
3
+ type?: import("vue").PropType<{
4
+ [key: string]: any;
5
+ }>;
6
+ default?: {
7
+ [key: string]: any;
8
+ };
9
+ };
10
+ graphicConfig: {
11
+ type?: import("vue").PropType<{
12
+ [key: string]: any;
13
+ }>;
14
+ default?: {
15
+ [key: string]: any;
16
+ };
17
+ };
18
+ promptText: {
19
+ type?: import("vue").PropType<string>;
20
+ default?: string;
21
+ };
22
+ associatId: {
23
+ type?: import("vue").PropType<string[]>;
24
+ default?: string[];
25
+ };
26
+ fontSize: {
27
+ type?: import("vue").PropType<string>;
28
+ default?: string;
29
+ };
30
+ lineHeight: {
31
+ type?: import("vue").PropType<string>;
32
+ default?: string;
33
+ };
34
+ id: {
35
+ type?: import("vue").PropType<string>;
36
+ default?: string;
37
+ };
38
+ name: {
39
+ type?: import("vue").PropType<string>;
40
+ default?: string;
41
+ };
42
+ keyName: {
43
+ type?: import("vue").PropType<string>;
44
+ default?: string;
45
+ };
46
+ type: {
47
+ type?: import("vue").PropType<string>;
48
+ default?: string;
49
+ };
50
+ width: {
51
+ type?: import("vue").PropType<string>;
52
+ default?: string;
53
+ };
54
+ height: {
55
+ type?: import("vue").PropType<string>;
56
+ default?: string;
57
+ };
58
+ position: {
59
+ type?: import("vue").PropType<string>;
60
+ default?: string;
61
+ };
62
+ top: {
63
+ type?: import("vue").PropType<string>;
64
+ default?: string;
65
+ };
66
+ left: {
67
+ type?: import("vue").PropType<string>;
68
+ default?: string;
69
+ };
70
+ zIndex: {
71
+ type?: import("vue").PropType<number>;
72
+ default?: number;
73
+ };
74
+ rotate: {
75
+ type?: import("vue").PropType<string>;
76
+ default?: string;
77
+ };
78
+ isShow: {
79
+ type?: import("vue").PropType<boolean>;
80
+ default?: boolean;
81
+ };
82
+ isRender: {
83
+ type?: import("vue").PropType<boolean>;
84
+ default?: boolean;
85
+ };
86
+ events: {
87
+ type?: import("vue").PropType<import("../../utils/props").Events>;
88
+ default?: import("../../utils/props").Events;
89
+ };
90
+ requestUrl: {
91
+ type?: import("vue").PropType<string>;
92
+ default?: string;
93
+ };
94
+ requestMethod: {
95
+ type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
96
+ default?: import("../../utils/props").RequestMethod;
97
+ };
98
+ requestHeaders: {
99
+ type?: import("vue").PropType<string>;
100
+ default?: string;
101
+ };
102
+ isOpenRequestTimer: {
103
+ type?: import("vue").PropType<boolean>;
104
+ default?: boolean;
105
+ };
106
+ isViewRedrawing: {
107
+ type?: import("vue").PropType<boolean>;
108
+ default?: boolean;
109
+ };
110
+ requestInterval: {
111
+ type?: import("vue").PropType<number>;
112
+ default?: number;
113
+ };
114
+ requestParams: {
115
+ type?: import("vue").PropType<import("../../utils/props").RequestParams>;
116
+ default?: import("../../utils/props").RequestParams;
117
+ };
118
+ requestSort: {
119
+ type?: import("vue").PropType<number>;
120
+ default?: number;
121
+ };
122
+ dataType: {
123
+ type?: import("vue").PropType<"indicator" | "request" | "component" | "static">;
124
+ default?: "indicator" | "request" | "component" | "static";
125
+ };
126
+ scale?: {
127
+ type?: import("vue").PropType<number>;
128
+ default?: number;
129
+ };
130
+ requestParamsMode: {
131
+ type?: import("vue").PropType<"2" | "1">;
132
+ default?: "2" | "1";
133
+ };
134
+ customRequestParams: {
135
+ type?: import("vue").PropType<string>;
136
+ default?: string;
137
+ };
138
+ dataSetParam?: {
139
+ type?: import("vue").PropType<any>;
140
+ default?: any;
141
+ };
142
+ requestType?: {
143
+ type?: import("vue").PropType<any>;
144
+ default?: any;
145
+ };
146
+ componentDoc?: {
147
+ type?: import("vue").PropType<null>;
148
+ default?: null;
149
+ };
150
+ extendData?: {
151
+ type?: import("vue").PropType<{
152
+ [key: string]: any;
153
+ }>;
154
+ default?: {
155
+ [key: string]: any;
156
+ };
157
+ };
158
+ toolboxShow?: {
159
+ type?: import("vue").PropType<boolean>;
160
+ default?: boolean;
161
+ };
162
+ isShowIndDetail?: {
163
+ type?: import("vue").PropType<boolean>;
164
+ default?: boolean;
165
+ };
166
+ isShowTrend?: {
167
+ type?: import("vue").PropType<boolean>;
168
+ default?: boolean;
169
+ };
170
+ indDetailIconColor?: {
171
+ type?: import("vue").PropType<string>;
172
+ default?: string;
173
+ };
174
+ indDetailIconFontSize?: {
175
+ type?: import("vue").PropType<string>;
176
+ default?: string;
177
+ };
178
+ }, {
179
+ loading: import("vue").Ref<boolean>;
180
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
181
+ pageMode: string;
182
+ myText: import("vue").Ref<string>;
183
+ errorText: import("vue").Ref<string>;
184
+ click: () => void;
185
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
186
+ data: {
187
+ type?: import("vue").PropType<{
188
+ [key: string]: any;
189
+ }>;
190
+ default?: {
191
+ [key: string]: any;
192
+ };
193
+ };
194
+ graphicConfig: {
195
+ type?: import("vue").PropType<{
196
+ [key: string]: any;
197
+ }>;
198
+ default?: {
199
+ [key: string]: any;
200
+ };
201
+ };
202
+ promptText: {
203
+ type?: import("vue").PropType<string>;
204
+ default?: string;
205
+ };
206
+ associatId: {
207
+ type?: import("vue").PropType<string[]>;
208
+ default?: string[];
209
+ };
210
+ fontSize: {
211
+ type?: import("vue").PropType<string>;
212
+ default?: string;
213
+ };
214
+ lineHeight: {
215
+ type?: import("vue").PropType<string>;
216
+ default?: string;
217
+ };
218
+ id: {
219
+ type?: import("vue").PropType<string>;
220
+ default?: string;
221
+ };
222
+ name: {
223
+ type?: import("vue").PropType<string>;
224
+ default?: string;
225
+ };
226
+ keyName: {
227
+ type?: import("vue").PropType<string>;
228
+ default?: string;
229
+ };
230
+ type: {
231
+ type?: import("vue").PropType<string>;
232
+ default?: string;
233
+ };
234
+ width: {
235
+ type?: import("vue").PropType<string>;
236
+ default?: string;
237
+ };
238
+ height: {
239
+ type?: import("vue").PropType<string>;
240
+ default?: string;
241
+ };
242
+ position: {
243
+ type?: import("vue").PropType<string>;
244
+ default?: string;
245
+ };
246
+ top: {
247
+ type?: import("vue").PropType<string>;
248
+ default?: string;
249
+ };
250
+ left: {
251
+ type?: import("vue").PropType<string>;
252
+ default?: string;
253
+ };
254
+ zIndex: {
255
+ type?: import("vue").PropType<number>;
256
+ default?: number;
257
+ };
258
+ rotate: {
259
+ type?: import("vue").PropType<string>;
260
+ default?: string;
261
+ };
262
+ isShow: {
263
+ type?: import("vue").PropType<boolean>;
264
+ default?: boolean;
265
+ };
266
+ isRender: {
267
+ type?: import("vue").PropType<boolean>;
268
+ default?: boolean;
269
+ };
270
+ events: {
271
+ type?: import("vue").PropType<import("../../utils/props").Events>;
272
+ default?: import("../../utils/props").Events;
273
+ };
274
+ requestUrl: {
275
+ type?: import("vue").PropType<string>;
276
+ default?: string;
277
+ };
278
+ requestMethod: {
279
+ type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
280
+ default?: import("../../utils/props").RequestMethod;
281
+ };
282
+ requestHeaders: {
283
+ type?: import("vue").PropType<string>;
284
+ default?: string;
285
+ };
286
+ isOpenRequestTimer: {
287
+ type?: import("vue").PropType<boolean>;
288
+ default?: boolean;
289
+ };
290
+ isViewRedrawing: {
291
+ type?: import("vue").PropType<boolean>;
292
+ default?: boolean;
293
+ };
294
+ requestInterval: {
295
+ type?: import("vue").PropType<number>;
296
+ default?: number;
297
+ };
298
+ requestParams: {
299
+ type?: import("vue").PropType<import("../../utils/props").RequestParams>;
300
+ default?: import("../../utils/props").RequestParams;
301
+ };
302
+ requestSort: {
303
+ type?: import("vue").PropType<number>;
304
+ default?: number;
305
+ };
306
+ dataType: {
307
+ type?: import("vue").PropType<"indicator" | "request" | "component" | "static">;
308
+ default?: "indicator" | "request" | "component" | "static";
309
+ };
310
+ scale?: {
311
+ type?: import("vue").PropType<number>;
312
+ default?: number;
313
+ };
314
+ requestParamsMode: {
315
+ type?: import("vue").PropType<"2" | "1">;
316
+ default?: "2" | "1";
317
+ };
318
+ customRequestParams: {
319
+ type?: import("vue").PropType<string>;
320
+ default?: string;
321
+ };
322
+ dataSetParam?: {
323
+ type?: import("vue").PropType<any>;
324
+ default?: any;
325
+ };
326
+ requestType?: {
327
+ type?: import("vue").PropType<any>;
328
+ default?: any;
329
+ };
330
+ componentDoc?: {
331
+ type?: import("vue").PropType<null>;
332
+ default?: null;
333
+ };
334
+ extendData?: {
335
+ type?: import("vue").PropType<{
336
+ [key: string]: any;
337
+ }>;
338
+ default?: {
339
+ [key: string]: any;
340
+ };
341
+ };
342
+ toolboxShow?: {
343
+ type?: import("vue").PropType<boolean>;
344
+ default?: boolean;
345
+ };
346
+ isShowIndDetail?: {
347
+ type?: import("vue").PropType<boolean>;
348
+ default?: boolean;
349
+ };
350
+ isShowTrend?: {
351
+ type?: import("vue").PropType<boolean>;
352
+ default?: boolean;
353
+ };
354
+ indDetailIconColor?: {
355
+ type?: import("vue").PropType<string>;
356
+ default?: string;
357
+ };
358
+ indDetailIconFontSize?: {
359
+ type?: import("vue").PropType<string>;
360
+ default?: string;
361
+ };
362
+ }>>, {}>;
363
+ export default _sfc_main;