@devtable/dashboard 11.3.0 → 11.4.0
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/heatmap/option/grid.d.ts +4 -0
- package/dist/components/plugins/viz-components/heatmap/option/series.d.ts +1 -0
- package/dist/components/plugins/viz-components/heatmap/option/x-axis.d.ts +1 -28
- package/dist/components/plugins/viz-components/heatmap/option/y-axis.d.ts +1 -30
- package/dist/components/plugins/viz-components/merico-heatmap/render/option/grid.d.ts +3 -0
- package/dist/components/plugins/viz-components/merico-heatmap/render/option/series.d.ts +1 -0
- package/dist/components/plugins/viz-components/merico-heatmap/render/option/x-axis.d.ts +1 -28
- package/dist/components/plugins/viz-components/merico-heatmap/render/option/y-axis.d.ts +1 -30
- package/dist/dashboard.es.js +414 -367
- package/dist/dashboard.umd.js +31 -31
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { IHeatmapConf } from '../type';
|
|
2
2
|
export declare function getGrid(conf: IHeatmapConf): {
|
|
3
|
+
show: boolean;
|
|
3
4
|
top: number;
|
|
4
5
|
left: number;
|
|
5
6
|
right: number;
|
|
6
7
|
bottom: number;
|
|
7
8
|
containLabel: boolean;
|
|
9
|
+
borderColor: string;
|
|
10
|
+
backgroundColor: string;
|
|
11
|
+
z: number;
|
|
8
12
|
};
|
|
@@ -1,30 +1,3 @@
|
|
|
1
1
|
import { FormatterFuncType } from '../editors/x-axis/x-axis-label-formatter/get-echarts-x-axis-tick-label';
|
|
2
2
|
import { IHeatmapConf } from '../type';
|
|
3
|
-
export declare function getXAxis(conf: IHeatmapConf, xData: any[], formatterFunc: FormatterFuncType):
|
|
4
|
-
id: string;
|
|
5
|
-
type: string;
|
|
6
|
-
data: any[];
|
|
7
|
-
name: string;
|
|
8
|
-
align: string;
|
|
9
|
-
axisTick: {
|
|
10
|
-
show: boolean;
|
|
11
|
-
alignWithLabel: boolean;
|
|
12
|
-
};
|
|
13
|
-
axisLabel: {
|
|
14
|
-
formatter: FormatterFuncType;
|
|
15
|
-
width: number;
|
|
16
|
-
overflow: "truncate" | "break" | "breakAll";
|
|
17
|
-
ellipsis: "...";
|
|
18
|
-
rotate: number;
|
|
19
|
-
};
|
|
20
|
-
splitArea: {
|
|
21
|
-
show: boolean;
|
|
22
|
-
};
|
|
23
|
-
nameLocation: string;
|
|
24
|
-
nameGap: number;
|
|
25
|
-
nameTextStyle: {
|
|
26
|
-
fontWeight: string;
|
|
27
|
-
align: string;
|
|
28
|
-
};
|
|
29
|
-
z: number;
|
|
30
|
-
};
|
|
3
|
+
export declare function getXAxis(conf: IHeatmapConf, xData: any[], formatterFunc: FormatterFuncType, borderWidth: number): any;
|
|
@@ -1,32 +1,3 @@
|
|
|
1
1
|
import { FormatterFuncType } from '../editors/x-axis/x-axis-label-formatter/get-echarts-x-axis-tick-label';
|
|
2
2
|
import { IHeatmapConf } from '../type';
|
|
3
|
-
export declare function getYAxis(conf: IHeatmapConf, yData: any[], formatterFunc: FormatterFuncType):
|
|
4
|
-
type: string;
|
|
5
|
-
data: any[];
|
|
6
|
-
axisLabel: {
|
|
7
|
-
formatter: FormatterFuncType;
|
|
8
|
-
width: number;
|
|
9
|
-
overflow: "truncate" | "break" | "breakAll";
|
|
10
|
-
ellipsis: "...";
|
|
11
|
-
rotate: number;
|
|
12
|
-
};
|
|
13
|
-
axisLine: {
|
|
14
|
-
show: boolean;
|
|
15
|
-
color: string;
|
|
16
|
-
};
|
|
17
|
-
axisTick: {
|
|
18
|
-
show: boolean;
|
|
19
|
-
alignWithLabel: boolean;
|
|
20
|
-
};
|
|
21
|
-
splitArea: {
|
|
22
|
-
show: boolean;
|
|
23
|
-
};
|
|
24
|
-
nameTextStyle: {
|
|
25
|
-
fontWeight: string;
|
|
26
|
-
align: "center" | "left" | "right";
|
|
27
|
-
};
|
|
28
|
-
nameLocation: string;
|
|
29
|
-
nameGap: number;
|
|
30
|
-
z: number;
|
|
31
|
-
name: string;
|
|
32
|
-
};
|
|
3
|
+
export declare function getYAxis(conf: IHeatmapConf, yData: any[], formatterFunc: FormatterFuncType, borderWidth: number): any;
|
|
@@ -1,30 +1,3 @@
|
|
|
1
1
|
import { FormatterFuncType } from '../../editors/x-axis/x-axis-label-formatter/get-echarts-x-axis-tick-label';
|
|
2
2
|
import { TMericoHeatmapConf } from '../../type';
|
|
3
|
-
export declare function getXAxis(conf: TMericoHeatmapConf, data: TPanelData, formatterFunc: FormatterFuncType):
|
|
4
|
-
id: string;
|
|
5
|
-
type: string;
|
|
6
|
-
data: any[];
|
|
7
|
-
name: string;
|
|
8
|
-
align: string;
|
|
9
|
-
axisTick: {
|
|
10
|
-
show: boolean;
|
|
11
|
-
alignWithLabel: boolean;
|
|
12
|
-
};
|
|
13
|
-
axisLabel: {
|
|
14
|
-
formatter: FormatterFuncType;
|
|
15
|
-
width: number;
|
|
16
|
-
overflow: "truncate" | "break" | "breakAll";
|
|
17
|
-
ellipsis: "...";
|
|
18
|
-
rotate: number;
|
|
19
|
-
};
|
|
20
|
-
splitArea: {
|
|
21
|
-
show: boolean;
|
|
22
|
-
};
|
|
23
|
-
nameLocation: string;
|
|
24
|
-
nameGap: number;
|
|
25
|
-
nameTextStyle: {
|
|
26
|
-
fontWeight: string;
|
|
27
|
-
align: string;
|
|
28
|
-
};
|
|
29
|
-
z: number;
|
|
30
|
-
};
|
|
3
|
+
export declare function getXAxis(conf: TMericoHeatmapConf, data: TPanelData, formatterFunc: FormatterFuncType): any;
|
|
@@ -1,32 +1,3 @@
|
|
|
1
1
|
import { FormatterFuncType } from '../../editors/x-axis/x-axis-label-formatter/get-echarts-x-axis-tick-label';
|
|
2
2
|
import { TMericoHeatmapConf } from '../../type';
|
|
3
|
-
export declare function getYAxis(conf: TMericoHeatmapConf, data: TPanelData, formatterFunc: FormatterFuncType):
|
|
4
|
-
type: string;
|
|
5
|
-
data: any[];
|
|
6
|
-
axisLabel: {
|
|
7
|
-
formatter: FormatterFuncType;
|
|
8
|
-
width: number;
|
|
9
|
-
overflow: "truncate" | "break" | "breakAll";
|
|
10
|
-
ellipsis: "...";
|
|
11
|
-
rotate: number;
|
|
12
|
-
};
|
|
13
|
-
axisLine: {
|
|
14
|
-
show: boolean;
|
|
15
|
-
color: string;
|
|
16
|
-
};
|
|
17
|
-
axisTick: {
|
|
18
|
-
show: boolean;
|
|
19
|
-
alignWithLabel: boolean;
|
|
20
|
-
};
|
|
21
|
-
splitArea: {
|
|
22
|
-
show: boolean;
|
|
23
|
-
};
|
|
24
|
-
nameTextStyle: {
|
|
25
|
-
fontWeight: string;
|
|
26
|
-
align: "center" | "left" | "right";
|
|
27
|
-
};
|
|
28
|
-
nameLocation: string;
|
|
29
|
-
nameGap: number;
|
|
30
|
-
z: number;
|
|
31
|
-
name: string;
|
|
32
|
-
};
|
|
3
|
+
export declare function getYAxis(conf: TMericoHeatmapConf, data: TPanelData, formatterFunc: FormatterFuncType): any;
|