@devtable/dashboard 14.57.3 → 14.57.4
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/components/plugins/viz-components/pareto-chart/option/index.d.ts +30 -29
- package/dist/components/plugins/viz-components/pareto-chart/type.d.ts +4 -0
- package/dist/dashboard.es.js +2453 -2424
- package/dist/dashboard.umd.js +50 -50
- package/dist/i18n/en.d.ts +1 -0
- package/dist/i18n/zh.d.ts +1 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -40,6 +40,35 @@ export declare function getOption(conf: IParetoChartConf, data: TPanelData, vari
|
|
|
40
40
|
xAxis: any[];
|
|
41
41
|
yAxis: any[];
|
|
42
42
|
series: ({
|
|
43
|
+
name: string;
|
|
44
|
+
type: string;
|
|
45
|
+
hide_in_legend: boolean;
|
|
46
|
+
xAxisId: string;
|
|
47
|
+
yAxisIndex: number;
|
|
48
|
+
data: (string | number)[];
|
|
49
|
+
symbol: string;
|
|
50
|
+
silent: boolean;
|
|
51
|
+
tooltip: {
|
|
52
|
+
show: boolean;
|
|
53
|
+
};
|
|
54
|
+
markLine: {
|
|
55
|
+
data: {
|
|
56
|
+
[x: string]: string | number;
|
|
57
|
+
name: string;
|
|
58
|
+
}[];
|
|
59
|
+
silent: boolean;
|
|
60
|
+
symbol: string[];
|
|
61
|
+
lineStyle: {
|
|
62
|
+
type: import("../../../common-echarts-fields/line-type").IEChartsLineType;
|
|
63
|
+
width: number;
|
|
64
|
+
color: string;
|
|
65
|
+
};
|
|
66
|
+
label: {
|
|
67
|
+
formatter: () => string;
|
|
68
|
+
position: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
} | {
|
|
43
72
|
name: string;
|
|
44
73
|
type: string;
|
|
45
74
|
barMaxWidth: number;
|
|
@@ -113,35 +142,6 @@ export declare function getOption(conf: IParetoChartConf, data: TPanelData, vari
|
|
|
113
142
|
})[][];
|
|
114
143
|
} | undefined;
|
|
115
144
|
barMaxWidth?: undefined;
|
|
116
|
-
} | {
|
|
117
|
-
name: string;
|
|
118
|
-
type: string;
|
|
119
|
-
hide_in_legend: boolean;
|
|
120
|
-
xAxisId: string;
|
|
121
|
-
yAxisIndex: number;
|
|
122
|
-
data: (string | number)[];
|
|
123
|
-
symbol: string;
|
|
124
|
-
silent: boolean;
|
|
125
|
-
tooltip: {
|
|
126
|
-
show: boolean;
|
|
127
|
-
};
|
|
128
|
-
markLine: {
|
|
129
|
-
data: {
|
|
130
|
-
[x: string]: string | number;
|
|
131
|
-
name: string;
|
|
132
|
-
}[];
|
|
133
|
-
silent: boolean;
|
|
134
|
-
symbol: string[];
|
|
135
|
-
lineStyle: {
|
|
136
|
-
type: import("../../../common-echarts-fields/line-type").IEChartsLineType;
|
|
137
|
-
width: number;
|
|
138
|
-
color: string;
|
|
139
|
-
};
|
|
140
|
-
label: {
|
|
141
|
-
formatter: () => string;
|
|
142
|
-
position: string;
|
|
143
|
-
};
|
|
144
|
-
};
|
|
145
145
|
})[];
|
|
146
146
|
grid: {
|
|
147
147
|
top: number;
|
|
@@ -160,3 +160,4 @@ export declare function getOption(conf: IParetoChartConf, data: TPanelData, vari
|
|
|
160
160
|
containLabel: boolean;
|
|
161
161
|
};
|
|
162
162
|
};
|
|
163
|
+
export declare function buildBarData(data: TQueryData, xAxisIdKey: string, xAxisLabelKey: string, yAxisValueKey: string): [x: string, y: number][];
|