@ecan-bi/datav 1.1.35 → 1.1.36
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/index.es.js +1528 -1487
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/date-picker/DatePicker.vue.d.ts +74 -55
- package/types/control/date-picker/index.d.ts +73 -55
- package/types/control/date-picker/props.d.ts +43 -27
- package/types/control/range-picker/RangePicker.vue.d.ts +79 -60
- package/types/control/range-picker/index.d.ts +78 -60
- package/types/control/range-picker/props.d.ts +40 -29
- package/types/graph/bar/Bar.vue.d.ts +128 -66
- package/types/graph/bar/index.d.ts +128 -66
- package/types/graph/bar/props.d.ts +66 -36
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +30 -0
- package/types/graph/combo-graph/index.d.ts +30 -0
- package/types/graph/combo-graph/props.d.ts +16 -0
- package/types/graph/line/Line.vue.d.ts +2127 -271
- package/types/graph/line/index.d.ts +2127 -271
- package/types/graph/line/props.d.ts +1106 -122
- package/types/graph/pie/Pie.vue.d.ts +15 -0
- package/types/graph/pie/index.d.ts +15 -0
- package/types/graph/pie/props.d.ts +8 -0
- package/types/utils/util.d.ts +10 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Props } from '../../utils/props';
|
|
2
2
|
import { ManipulateType } from 'dayjs';
|
|
3
|
+
import { DateOperate } from '../date-picker/props';
|
|
3
4
|
export interface RangePickerProps extends Props {
|
|
4
5
|
picker: 'date' | 'week' | 'month' | 'quarter' | 'year';
|
|
5
6
|
format: string;
|
|
@@ -8,6 +9,7 @@ export interface RangePickerProps extends Props {
|
|
|
8
9
|
useCurrentTime: boolean;
|
|
9
10
|
interval: number;
|
|
10
11
|
intervalUnit: ManipulateType;
|
|
12
|
+
operate: DateOperate;
|
|
11
13
|
}
|
|
12
14
|
export declare const rangePickerProps: RangePickerProps;
|
|
13
15
|
export declare const rangePickerComponentProps: {
|
|
@@ -18,7 +20,7 @@ export declare const rangePickerComponentProps: {
|
|
|
18
20
|
type: any;
|
|
19
21
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
20
22
|
[key: string]: any;
|
|
21
|
-
} | import('../../utils/props').RequestParams;
|
|
23
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
22
24
|
};
|
|
23
25
|
format: {
|
|
24
26
|
type?: undefined;
|
|
@@ -27,7 +29,7 @@ export declare const rangePickerComponentProps: {
|
|
|
27
29
|
type: any;
|
|
28
30
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
29
31
|
[key: string]: any;
|
|
30
|
-
} | import('../../utils/props').RequestParams;
|
|
32
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
31
33
|
};
|
|
32
34
|
startTime: {
|
|
33
35
|
type?: undefined;
|
|
@@ -36,7 +38,7 @@ export declare const rangePickerComponentProps: {
|
|
|
36
38
|
type: any;
|
|
37
39
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
38
40
|
[key: string]: any;
|
|
39
|
-
} | import('../../utils/props').RequestParams;
|
|
41
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
40
42
|
};
|
|
41
43
|
endTime: {
|
|
42
44
|
type?: undefined;
|
|
@@ -45,7 +47,7 @@ export declare const rangePickerComponentProps: {
|
|
|
45
47
|
type: any;
|
|
46
48
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
47
49
|
[key: string]: any;
|
|
48
|
-
} | import('../../utils/props').RequestParams;
|
|
50
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
49
51
|
};
|
|
50
52
|
useCurrentTime: {
|
|
51
53
|
type?: undefined;
|
|
@@ -54,7 +56,7 @@ export declare const rangePickerComponentProps: {
|
|
|
54
56
|
type: any;
|
|
55
57
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
56
58
|
[key: string]: any;
|
|
57
|
-
} | import('../../utils/props').RequestParams;
|
|
59
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
58
60
|
};
|
|
59
61
|
interval: {
|
|
60
62
|
type?: undefined;
|
|
@@ -63,7 +65,7 @@ export declare const rangePickerComponentProps: {
|
|
|
63
65
|
type: any;
|
|
64
66
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
65
67
|
[key: string]: any;
|
|
66
|
-
} | import('../../utils/props').RequestParams;
|
|
68
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
67
69
|
};
|
|
68
70
|
intervalUnit: {
|
|
69
71
|
type?: undefined;
|
|
@@ -72,7 +74,16 @@ export declare const rangePickerComponentProps: {
|
|
|
72
74
|
type: any;
|
|
73
75
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
74
76
|
[key: string]: any;
|
|
75
|
-
} | import('../../utils/props').RequestParams;
|
|
77
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
78
|
+
};
|
|
79
|
+
operate: {
|
|
80
|
+
type?: undefined;
|
|
81
|
+
default?: undefined;
|
|
82
|
+
} | {
|
|
83
|
+
type: any;
|
|
84
|
+
default: string | number | boolean | import('../../utils/props').Events | {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
76
87
|
};
|
|
77
88
|
id: {
|
|
78
89
|
type?: undefined;
|
|
@@ -81,7 +92,7 @@ export declare const rangePickerComponentProps: {
|
|
|
81
92
|
type: any;
|
|
82
93
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
83
94
|
[key: string]: any;
|
|
84
|
-
} | import('../../utils/props').RequestParams;
|
|
95
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
85
96
|
};
|
|
86
97
|
name: {
|
|
87
98
|
type?: undefined;
|
|
@@ -90,7 +101,7 @@ export declare const rangePickerComponentProps: {
|
|
|
90
101
|
type: any;
|
|
91
102
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
92
103
|
[key: string]: any;
|
|
93
|
-
} | import('../../utils/props').RequestParams;
|
|
104
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
94
105
|
};
|
|
95
106
|
keyName: {
|
|
96
107
|
type?: undefined;
|
|
@@ -99,7 +110,7 @@ export declare const rangePickerComponentProps: {
|
|
|
99
110
|
type: any;
|
|
100
111
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
101
112
|
[key: string]: any;
|
|
102
|
-
} | import('../../utils/props').RequestParams;
|
|
113
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
103
114
|
};
|
|
104
115
|
type: {
|
|
105
116
|
type?: undefined;
|
|
@@ -108,7 +119,7 @@ export declare const rangePickerComponentProps: {
|
|
|
108
119
|
type: any;
|
|
109
120
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
110
121
|
[key: string]: any;
|
|
111
|
-
} | import('../../utils/props').RequestParams;
|
|
122
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
112
123
|
};
|
|
113
124
|
width: {
|
|
114
125
|
type?: undefined;
|
|
@@ -117,7 +128,7 @@ export declare const rangePickerComponentProps: {
|
|
|
117
128
|
type: any;
|
|
118
129
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
119
130
|
[key: string]: any;
|
|
120
|
-
} | import('../../utils/props').RequestParams;
|
|
131
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
121
132
|
};
|
|
122
133
|
height: {
|
|
123
134
|
type?: undefined;
|
|
@@ -126,7 +137,7 @@ export declare const rangePickerComponentProps: {
|
|
|
126
137
|
type: any;
|
|
127
138
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
128
139
|
[key: string]: any;
|
|
129
|
-
} | import('../../utils/props').RequestParams;
|
|
140
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
130
141
|
};
|
|
131
142
|
position: {
|
|
132
143
|
type?: undefined;
|
|
@@ -135,7 +146,7 @@ export declare const rangePickerComponentProps: {
|
|
|
135
146
|
type: any;
|
|
136
147
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
137
148
|
[key: string]: any;
|
|
138
|
-
} | import('../../utils/props').RequestParams;
|
|
149
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
139
150
|
};
|
|
140
151
|
top: {
|
|
141
152
|
type?: undefined;
|
|
@@ -144,7 +155,7 @@ export declare const rangePickerComponentProps: {
|
|
|
144
155
|
type: any;
|
|
145
156
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
146
157
|
[key: string]: any;
|
|
147
|
-
} | import('../../utils/props').RequestParams;
|
|
158
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
148
159
|
};
|
|
149
160
|
left: {
|
|
150
161
|
type?: undefined;
|
|
@@ -153,7 +164,7 @@ export declare const rangePickerComponentProps: {
|
|
|
153
164
|
type: any;
|
|
154
165
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
155
166
|
[key: string]: any;
|
|
156
|
-
} | import('../../utils/props').RequestParams;
|
|
167
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
157
168
|
};
|
|
158
169
|
zIndex: {
|
|
159
170
|
type?: undefined;
|
|
@@ -162,7 +173,7 @@ export declare const rangePickerComponentProps: {
|
|
|
162
173
|
type: any;
|
|
163
174
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
164
175
|
[key: string]: any;
|
|
165
|
-
} | import('../../utils/props').RequestParams;
|
|
176
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
166
177
|
};
|
|
167
178
|
rotate: {
|
|
168
179
|
type?: undefined;
|
|
@@ -171,7 +182,7 @@ export declare const rangePickerComponentProps: {
|
|
|
171
182
|
type: any;
|
|
172
183
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
173
184
|
[key: string]: any;
|
|
174
|
-
} | import('../../utils/props').RequestParams;
|
|
185
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
175
186
|
};
|
|
176
187
|
isShow: {
|
|
177
188
|
type?: undefined;
|
|
@@ -180,7 +191,7 @@ export declare const rangePickerComponentProps: {
|
|
|
180
191
|
type: any;
|
|
181
192
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
182
193
|
[key: string]: any;
|
|
183
|
-
} | import('../../utils/props').RequestParams;
|
|
194
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
184
195
|
};
|
|
185
196
|
isRender: {
|
|
186
197
|
type?: undefined;
|
|
@@ -189,7 +200,7 @@ export declare const rangePickerComponentProps: {
|
|
|
189
200
|
type: any;
|
|
190
201
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
191
202
|
[key: string]: any;
|
|
192
|
-
} | import('../../utils/props').RequestParams;
|
|
203
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
193
204
|
};
|
|
194
205
|
events: {
|
|
195
206
|
type?: undefined;
|
|
@@ -198,7 +209,7 @@ export declare const rangePickerComponentProps: {
|
|
|
198
209
|
type: any;
|
|
199
210
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
200
211
|
[key: string]: any;
|
|
201
|
-
} | import('../../utils/props').RequestParams;
|
|
212
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
202
213
|
};
|
|
203
214
|
requestUrl: {
|
|
204
215
|
type?: undefined;
|
|
@@ -207,7 +218,7 @@ export declare const rangePickerComponentProps: {
|
|
|
207
218
|
type: any;
|
|
208
219
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
209
220
|
[key: string]: any;
|
|
210
|
-
} | import('../../utils/props').RequestParams;
|
|
221
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
211
222
|
};
|
|
212
223
|
requestMethod: {
|
|
213
224
|
type?: undefined;
|
|
@@ -216,7 +227,7 @@ export declare const rangePickerComponentProps: {
|
|
|
216
227
|
type: any;
|
|
217
228
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
218
229
|
[key: string]: any;
|
|
219
|
-
} | import('../../utils/props').RequestParams;
|
|
230
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
220
231
|
};
|
|
221
232
|
requestHeaders: {
|
|
222
233
|
type?: undefined;
|
|
@@ -225,7 +236,7 @@ export declare const rangePickerComponentProps: {
|
|
|
225
236
|
type: any;
|
|
226
237
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
227
238
|
[key: string]: any;
|
|
228
|
-
} | import('../../utils/props').RequestParams;
|
|
239
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
229
240
|
};
|
|
230
241
|
isOpenRequestTimer: {
|
|
231
242
|
type?: undefined;
|
|
@@ -234,7 +245,7 @@ export declare const rangePickerComponentProps: {
|
|
|
234
245
|
type: any;
|
|
235
246
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
236
247
|
[key: string]: any;
|
|
237
|
-
} | import('../../utils/props').RequestParams;
|
|
248
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
238
249
|
};
|
|
239
250
|
requestInterval: {
|
|
240
251
|
type?: undefined;
|
|
@@ -243,7 +254,7 @@ export declare const rangePickerComponentProps: {
|
|
|
243
254
|
type: any;
|
|
244
255
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
245
256
|
[key: string]: any;
|
|
246
|
-
} | import('../../utils/props').RequestParams;
|
|
257
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
247
258
|
};
|
|
248
259
|
requestParams: {
|
|
249
260
|
type?: undefined;
|
|
@@ -252,7 +263,7 @@ export declare const rangePickerComponentProps: {
|
|
|
252
263
|
type: any;
|
|
253
264
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
254
265
|
[key: string]: any;
|
|
255
|
-
} | import('../../utils/props').RequestParams;
|
|
266
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
256
267
|
};
|
|
257
268
|
requestSort: {
|
|
258
269
|
type?: undefined;
|
|
@@ -261,7 +272,7 @@ export declare const rangePickerComponentProps: {
|
|
|
261
272
|
type: any;
|
|
262
273
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
263
274
|
[key: string]: any;
|
|
264
|
-
} | import('../../utils/props').RequestParams;
|
|
275
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
265
276
|
};
|
|
266
277
|
dataType: {
|
|
267
278
|
type?: undefined;
|
|
@@ -270,7 +281,7 @@ export declare const rangePickerComponentProps: {
|
|
|
270
281
|
type: any;
|
|
271
282
|
default: string | number | boolean | import('../../utils/props').Events | {
|
|
272
283
|
[key: string]: any;
|
|
273
|
-
} | import('../../utils/props').RequestParams;
|
|
284
|
+
} | import('../../utils/props').RequestParams | DateOperate;
|
|
274
285
|
};
|
|
275
286
|
};
|
|
276
287
|
export declare const rangePickerEvents: string[];
|
|
@@ -238,7 +238,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
238
238
|
layer: "2";
|
|
239
239
|
};
|
|
240
240
|
};
|
|
241
|
-
|
|
241
|
+
xAxisSplitLineStyleColor: {
|
|
242
242
|
type?: undefined;
|
|
243
243
|
default?: undefined;
|
|
244
244
|
} | {
|
|
@@ -252,7 +252,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
252
252
|
layer: "2";
|
|
253
253
|
};
|
|
254
254
|
};
|
|
255
|
-
|
|
255
|
+
xAxisInverse: {
|
|
256
256
|
type?: undefined;
|
|
257
257
|
default?: undefined;
|
|
258
258
|
} | {
|
|
@@ -266,7 +266,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
266
266
|
layer: "2";
|
|
267
267
|
};
|
|
268
268
|
};
|
|
269
|
-
|
|
269
|
+
xAxisMinInterval: {
|
|
270
270
|
type?: undefined;
|
|
271
271
|
default?: undefined;
|
|
272
272
|
} | {
|
|
@@ -280,7 +280,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
280
280
|
layer: "2";
|
|
281
281
|
};
|
|
282
282
|
};
|
|
283
|
-
|
|
283
|
+
yAxisMinInterval: {
|
|
284
284
|
type?: undefined;
|
|
285
285
|
default?: undefined;
|
|
286
286
|
} | {
|
|
@@ -294,7 +294,63 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
294
294
|
layer: "2";
|
|
295
295
|
};
|
|
296
296
|
};
|
|
297
|
-
|
|
297
|
+
yAxisInverse: {
|
|
298
|
+
type?: undefined;
|
|
299
|
+
default?: undefined;
|
|
300
|
+
} | {
|
|
301
|
+
type: any;
|
|
302
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
303
|
+
[key: string]: any;
|
|
304
|
+
} | import('../../utils/props').RequestParams | {
|
|
305
|
+
[key: string]: any;
|
|
306
|
+
chartType: "bar";
|
|
307
|
+
plugin: "1";
|
|
308
|
+
layer: "2";
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
yAxisLabelWidth: {
|
|
312
|
+
type?: undefined;
|
|
313
|
+
default?: undefined;
|
|
314
|
+
} | {
|
|
315
|
+
type: any;
|
|
316
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
317
|
+
[key: string]: any;
|
|
318
|
+
} | import('../../utils/props').RequestParams | {
|
|
319
|
+
[key: string]: any;
|
|
320
|
+
chartType: "bar";
|
|
321
|
+
plugin: "1";
|
|
322
|
+
layer: "2";
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
yAxisLabelOverflow: {
|
|
326
|
+
type?: undefined;
|
|
327
|
+
default?: undefined;
|
|
328
|
+
} | {
|
|
329
|
+
type: any;
|
|
330
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
331
|
+
[key: string]: any;
|
|
332
|
+
} | import('../../utils/props').RequestParams | {
|
|
333
|
+
[key: string]: any;
|
|
334
|
+
chartType: "bar";
|
|
335
|
+
plugin: "1";
|
|
336
|
+
layer: "2";
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
yAxisLabelRotate: {
|
|
340
|
+
type?: undefined;
|
|
341
|
+
default?: undefined;
|
|
342
|
+
} | {
|
|
343
|
+
type: any;
|
|
344
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
345
|
+
[key: string]: any;
|
|
346
|
+
} | import('../../utils/props').RequestParams | {
|
|
347
|
+
[key: string]: any;
|
|
348
|
+
chartType: "bar";
|
|
349
|
+
plugin: "1";
|
|
350
|
+
layer: "2";
|
|
351
|
+
};
|
|
352
|
+
};
|
|
353
|
+
yAxisSplitLineShow: {
|
|
298
354
|
type?: undefined;
|
|
299
355
|
default?: undefined;
|
|
300
356
|
} | {
|
|
@@ -700,34 +756,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
700
756
|
layer: "2";
|
|
701
757
|
};
|
|
702
758
|
};
|
|
703
|
-
xAxisInverse: {
|
|
704
|
-
type?: undefined;
|
|
705
|
-
default?: undefined;
|
|
706
|
-
} | {
|
|
707
|
-
type: any;
|
|
708
|
-
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
709
|
-
[key: string]: any;
|
|
710
|
-
} | import('../../utils/props').RequestParams | {
|
|
711
|
-
[key: string]: any;
|
|
712
|
-
chartType: "bar";
|
|
713
|
-
plugin: "1";
|
|
714
|
-
layer: "2";
|
|
715
|
-
};
|
|
716
|
-
};
|
|
717
|
-
yAxisInverse: {
|
|
718
|
-
type?: undefined;
|
|
719
|
-
default?: undefined;
|
|
720
|
-
} | {
|
|
721
|
-
type: any;
|
|
722
|
-
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
723
|
-
[key: string]: any;
|
|
724
|
-
} | import('../../utils/props').RequestParams | {
|
|
725
|
-
[key: string]: any;
|
|
726
|
-
chartType: "bar";
|
|
727
|
-
plugin: "1";
|
|
728
|
-
layer: "2";
|
|
729
|
-
};
|
|
730
|
-
};
|
|
731
759
|
isStack: {
|
|
732
760
|
type?: undefined;
|
|
733
761
|
default?: undefined;
|
|
@@ -1213,6 +1241,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1213
1241
|
inverse: string | number | boolean | {
|
|
1214
1242
|
[key: string]: any;
|
|
1215
1243
|
};
|
|
1244
|
+
minInterval: string | number | boolean | {
|
|
1245
|
+
[key: string]: any;
|
|
1246
|
+
};
|
|
1216
1247
|
splitLine: {
|
|
1217
1248
|
show: string | number | boolean | {
|
|
1218
1249
|
[key: string]: any;
|
|
@@ -1260,6 +1291,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1260
1291
|
inverse: string | number | boolean | {
|
|
1261
1292
|
[key: string]: any;
|
|
1262
1293
|
};
|
|
1294
|
+
minInterval: string | number | boolean | {
|
|
1295
|
+
[key: string]: any;
|
|
1296
|
+
};
|
|
1263
1297
|
splitLine: {
|
|
1264
1298
|
show: string | number | boolean | {
|
|
1265
1299
|
[key: string]: any;
|
|
@@ -1540,7 +1574,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1540
1574
|
layer: "2";
|
|
1541
1575
|
};
|
|
1542
1576
|
};
|
|
1543
|
-
|
|
1577
|
+
xAxisSplitLineStyleColor: {
|
|
1544
1578
|
type?: undefined;
|
|
1545
1579
|
default?: undefined;
|
|
1546
1580
|
} | {
|
|
@@ -1554,7 +1588,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1554
1588
|
layer: "2";
|
|
1555
1589
|
};
|
|
1556
1590
|
};
|
|
1557
|
-
|
|
1591
|
+
xAxisInverse: {
|
|
1558
1592
|
type?: undefined;
|
|
1559
1593
|
default?: undefined;
|
|
1560
1594
|
} | {
|
|
@@ -1568,7 +1602,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1568
1602
|
layer: "2";
|
|
1569
1603
|
};
|
|
1570
1604
|
};
|
|
1571
|
-
|
|
1605
|
+
xAxisMinInterval: {
|
|
1572
1606
|
type?: undefined;
|
|
1573
1607
|
default?: undefined;
|
|
1574
1608
|
} | {
|
|
@@ -1582,7 +1616,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1582
1616
|
layer: "2";
|
|
1583
1617
|
};
|
|
1584
1618
|
};
|
|
1585
|
-
|
|
1619
|
+
yAxisMinInterval: {
|
|
1586
1620
|
type?: undefined;
|
|
1587
1621
|
default?: undefined;
|
|
1588
1622
|
} | {
|
|
@@ -1596,7 +1630,63 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1596
1630
|
layer: "2";
|
|
1597
1631
|
};
|
|
1598
1632
|
};
|
|
1599
|
-
|
|
1633
|
+
yAxisInverse: {
|
|
1634
|
+
type?: undefined;
|
|
1635
|
+
default?: undefined;
|
|
1636
|
+
} | {
|
|
1637
|
+
type: any;
|
|
1638
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
1639
|
+
[key: string]: any;
|
|
1640
|
+
} | import('../../utils/props').RequestParams | {
|
|
1641
|
+
[key: string]: any;
|
|
1642
|
+
chartType: "bar";
|
|
1643
|
+
plugin: "1";
|
|
1644
|
+
layer: "2";
|
|
1645
|
+
};
|
|
1646
|
+
};
|
|
1647
|
+
yAxisLabelWidth: {
|
|
1648
|
+
type?: undefined;
|
|
1649
|
+
default?: undefined;
|
|
1650
|
+
} | {
|
|
1651
|
+
type: any;
|
|
1652
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
1653
|
+
[key: string]: any;
|
|
1654
|
+
} | import('../../utils/props').RequestParams | {
|
|
1655
|
+
[key: string]: any;
|
|
1656
|
+
chartType: "bar";
|
|
1657
|
+
plugin: "1";
|
|
1658
|
+
layer: "2";
|
|
1659
|
+
};
|
|
1660
|
+
};
|
|
1661
|
+
yAxisLabelOverflow: {
|
|
1662
|
+
type?: undefined;
|
|
1663
|
+
default?: undefined;
|
|
1664
|
+
} | {
|
|
1665
|
+
type: any;
|
|
1666
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
1667
|
+
[key: string]: any;
|
|
1668
|
+
} | import('../../utils/props').RequestParams | {
|
|
1669
|
+
[key: string]: any;
|
|
1670
|
+
chartType: "bar";
|
|
1671
|
+
plugin: "1";
|
|
1672
|
+
layer: "2";
|
|
1673
|
+
};
|
|
1674
|
+
};
|
|
1675
|
+
yAxisLabelRotate: {
|
|
1676
|
+
type?: undefined;
|
|
1677
|
+
default?: undefined;
|
|
1678
|
+
} | {
|
|
1679
|
+
type: any;
|
|
1680
|
+
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
1681
|
+
[key: string]: any;
|
|
1682
|
+
} | import('../../utils/props').RequestParams | {
|
|
1683
|
+
[key: string]: any;
|
|
1684
|
+
chartType: "bar";
|
|
1685
|
+
plugin: "1";
|
|
1686
|
+
layer: "2";
|
|
1687
|
+
};
|
|
1688
|
+
};
|
|
1689
|
+
yAxisSplitLineShow: {
|
|
1600
1690
|
type?: undefined;
|
|
1601
1691
|
default?: undefined;
|
|
1602
1692
|
} | {
|
|
@@ -2002,34 +2092,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2002
2092
|
layer: "2";
|
|
2003
2093
|
};
|
|
2004
2094
|
};
|
|
2005
|
-
xAxisInverse: {
|
|
2006
|
-
type?: undefined;
|
|
2007
|
-
default?: undefined;
|
|
2008
|
-
} | {
|
|
2009
|
-
type: any;
|
|
2010
|
-
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
2011
|
-
[key: string]: any;
|
|
2012
|
-
} | import('../../utils/props').RequestParams | {
|
|
2013
|
-
[key: string]: any;
|
|
2014
|
-
chartType: "bar";
|
|
2015
|
-
plugin: "1";
|
|
2016
|
-
layer: "2";
|
|
2017
|
-
};
|
|
2018
|
-
};
|
|
2019
|
-
yAxisInverse: {
|
|
2020
|
-
type?: undefined;
|
|
2021
|
-
default?: undefined;
|
|
2022
|
-
} | {
|
|
2023
|
-
type: any;
|
|
2024
|
-
default: string | number | boolean | string[] | import('../../utils/props').Events | Data | KeyTypeDataFieldNames | ValueTypeDataFieldNames | {
|
|
2025
|
-
[key: string]: any;
|
|
2026
|
-
} | import('../../utils/props').RequestParams | {
|
|
2027
|
-
[key: string]: any;
|
|
2028
|
-
chartType: "bar";
|
|
2029
|
-
plugin: "1";
|
|
2030
|
-
layer: "2";
|
|
2031
|
-
};
|
|
2032
|
-
};
|
|
2033
2095
|
isStack: {
|
|
2034
2096
|
type?: undefined;
|
|
2035
2097
|
default?: undefined;
|