impaktapps-ui-builder 0.0.382-alpha.44 → 0.0.382-alpha.46
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/impaktapps-ui-builder.es.js +5 -48
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +7 -7
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +5 -51
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +37 -37
|
@@ -6,62 +6,16 @@ export declare const BarGraph: {
|
|
|
6
6
|
};
|
|
7
7
|
config: {
|
|
8
8
|
main: {
|
|
9
|
-
|
|
10
|
-
bottomLabel: string;
|
|
11
|
-
numTicks: number;
|
|
12
|
-
leftLabel: string;
|
|
13
|
-
axisLeft: boolean;
|
|
14
|
-
axisBottom: boolean;
|
|
15
|
-
hideTicks: boolean;
|
|
16
|
-
hideLeftAxisLine: boolean;
|
|
17
|
-
hideBottomAxisLine: boolean;
|
|
18
|
-
bottomAxisWidth: string;
|
|
19
|
-
legend: {
|
|
20
|
-
labelColor: string;
|
|
21
|
-
legendTitle: string;
|
|
22
|
-
direction: string;
|
|
23
|
-
align: string;
|
|
24
|
-
};
|
|
9
|
+
legend: {};
|
|
25
10
|
};
|
|
26
11
|
style: {
|
|
27
|
-
containerStyle: {
|
|
28
|
-
width: string;
|
|
29
|
-
height: string;
|
|
30
|
-
};
|
|
12
|
+
containerStyle: {};
|
|
31
13
|
headerStyle: {};
|
|
32
14
|
tooltipStyle: {};
|
|
33
|
-
|
|
34
|
-
margin: {
|
|
35
|
-
left: number;
|
|
36
|
-
bottom: number;
|
|
37
|
-
};
|
|
38
|
-
leftLabelOffset: number;
|
|
39
|
-
bottomLabelOffset: number;
|
|
40
|
-
};
|
|
41
|
-
barStyle: {
|
|
42
|
-
color: {
|
|
43
|
-
firstBarColor: string;
|
|
44
|
-
secondBarColor: string;
|
|
45
|
-
};
|
|
46
|
-
};
|
|
15
|
+
barStyle: {};
|
|
47
16
|
legendStyle: {
|
|
48
|
-
legend: {
|
|
49
|
-
|
|
50
|
-
fontSize: string;
|
|
51
|
-
fontFamily: string;
|
|
52
|
-
padding: string;
|
|
53
|
-
width: string;
|
|
54
|
-
display: string;
|
|
55
|
-
justifyContent: string;
|
|
56
|
-
border: string;
|
|
57
|
-
borderRadius: string;
|
|
58
|
-
marginRight: string;
|
|
59
|
-
};
|
|
60
|
-
legendTitle: {
|
|
61
|
-
fontSize: string;
|
|
62
|
-
marginBottom: string;
|
|
63
|
-
fontWeight: string;
|
|
64
|
-
};
|
|
17
|
+
legend: {};
|
|
18
|
+
legendTitle: {};
|
|
65
19
|
};
|
|
66
20
|
};
|
|
67
21
|
};
|
package/package.json
CHANGED
|
@@ -7,29 +7,29 @@ export const BarGraph = {
|
|
|
7
7
|
|
|
8
8
|
config: {
|
|
9
9
|
main: {
|
|
10
|
-
header: "Bar Graph",
|
|
11
|
-
bottomLabel: "Name of Employe",
|
|
12
|
-
numTicks: 6,
|
|
13
|
-
leftLabel: "Value in lakhs",
|
|
14
|
-
axisLeft: true,
|
|
15
|
-
axisBottom: true,
|
|
10
|
+
// header: "Bar Graph",
|
|
11
|
+
// bottomLabel: "Name of Employe",
|
|
12
|
+
// numTicks: 6,
|
|
13
|
+
// leftLabel: "Value in lakhs",
|
|
14
|
+
// axisLeft: true,
|
|
15
|
+
// axisBottom: true,
|
|
16
16
|
|
|
17
|
-
hideTicks: false,
|
|
18
|
-
hideLeftAxisLine: false,
|
|
19
|
-
hideBottomAxisLine: false,
|
|
20
|
-
bottomAxisWidth: "10px",
|
|
17
|
+
// hideTicks: false,
|
|
18
|
+
// hideLeftAxisLine: false,
|
|
19
|
+
// hideBottomAxisLine: false,
|
|
20
|
+
// bottomAxisWidth: "10px",
|
|
21
21
|
legend: {
|
|
22
|
-
labelColor: "green",
|
|
23
|
-
legendTitle: "",
|
|
24
|
-
direction: "row",
|
|
25
|
-
align: "none",
|
|
22
|
+
// labelColor: "green",
|
|
23
|
+
// legendTitle: "",
|
|
24
|
+
// direction: "row",
|
|
25
|
+
// align: "none",
|
|
26
26
|
|
|
27
27
|
},
|
|
28
28
|
},
|
|
29
29
|
style: {
|
|
30
30
|
containerStyle: {
|
|
31
|
-
width:"100%",
|
|
32
|
-
height:"450",
|
|
31
|
+
// width:"100%",
|
|
32
|
+
// height:"450",
|
|
33
33
|
|
|
34
34
|
},
|
|
35
35
|
headerStyle: {
|
|
@@ -39,36 +39,36 @@ export const BarGraph = {
|
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
},
|
|
42
|
-
labelStyle: { margin:{left:80,bottom:20},
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
},
|
|
42
|
+
// labelStyle: { margin:{left:80,bottom:20},
|
|
43
|
+
// leftLabelOffset: 50,
|
|
44
|
+
// bottomLabelOffset:10
|
|
45
|
+
// },
|
|
46
46
|
barStyle: {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
secondBarColor:"#3f51b5"
|
|
47
|
+
// color:{
|
|
48
|
+
// firstBarColor:"#6c5efb",
|
|
49
|
+
// secondBarColor:"#3f51b5"
|
|
50
50
|
// "#6c5efb"#3f51b5
|
|
51
51
|
// secondColor:"#3e50b3"
|
|
52
|
-
}
|
|
52
|
+
// }
|
|
53
53
|
},
|
|
54
54
|
legendStyle: {
|
|
55
55
|
legend: {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
56
|
+
// lineHeight: "0.9em",
|
|
57
|
+
// fontSize: "8px",
|
|
58
|
+
// fontFamily: "arial",
|
|
59
|
+
// padding: "10px 10px",
|
|
60
|
+
// width:"30%",
|
|
61
|
+
// display:"flex",
|
|
62
|
+
// justifyContent:"center",
|
|
63
|
+
// border: "1px solid rgba(255, 255, 255, 0.3)",
|
|
64
|
+
// borderRadius: " 8px",
|
|
65
|
+
// marginRight: "auto",
|
|
66
66
|
|
|
67
67
|
},
|
|
68
68
|
legendTitle: {
|
|
69
|
-
fontSize: "10px",
|
|
70
|
-
marginBottom: "10px",
|
|
71
|
-
fontWeight: "100",
|
|
69
|
+
// fontSize: "10px",
|
|
70
|
+
// marginBottom: "10px",
|
|
71
|
+
// fontWeight: "100",
|
|
72
72
|
|
|
73
73
|
},
|
|
74
74
|
},
|