impaktapps-ui-builder 0.0.382-alpha.49 → 0.0.382-alpha.50
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 +1 -29
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +3 -3
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +0 -28
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +29 -29
|
@@ -16,35 +16,7 @@ export declare const PieGraph: {
|
|
|
16
16
|
};
|
|
17
17
|
config: {
|
|
18
18
|
main: {
|
|
19
|
-
header: string;
|
|
20
19
|
type: string;
|
|
21
|
-
bottomLabel: string;
|
|
22
|
-
leftLabel: string;
|
|
23
|
-
axisLeft: boolean;
|
|
24
|
-
axisBottom: boolean;
|
|
25
|
-
legendAvailable: boolean;
|
|
26
|
-
legend: {
|
|
27
|
-
labelColor: string;
|
|
28
|
-
legendTitle: string;
|
|
29
|
-
direction: string;
|
|
30
|
-
align: string;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
style: {
|
|
34
|
-
containerStyle: {
|
|
35
|
-
height: string;
|
|
36
|
-
};
|
|
37
|
-
headerStyle: {};
|
|
38
|
-
tooltipStyle: {
|
|
39
|
-
backgroundColor: string;
|
|
40
|
-
width: string;
|
|
41
|
-
};
|
|
42
|
-
labelStyle: {};
|
|
43
|
-
legendStyle: {
|
|
44
|
-
legend: {};
|
|
45
|
-
legendTitle: {};
|
|
46
|
-
};
|
|
47
|
-
pieStyle: {};
|
|
48
20
|
};
|
|
49
21
|
};
|
|
50
22
|
};
|
package/package.json
CHANGED
|
@@ -84,39 +84,39 @@ export const PieGraph = {
|
|
|
84
84
|
},
|
|
85
85
|
config: {
|
|
86
86
|
main: {
|
|
87
|
-
header: "Incentive Branch category wise",
|
|
87
|
+
// header: "Incentive Branch category wise",
|
|
88
88
|
type: "PieGraph",
|
|
89
|
-
bottomLabel: "Name of Employe",
|
|
90
|
-
leftLabel: "Value",
|
|
89
|
+
// bottomLabel: "Name of Employe",
|
|
90
|
+
// leftLabel: "Value",
|
|
91
91
|
// tooltipDataKey: ["HDFC", "SBI", "Kotak","Sbi"],
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
92
|
+
// axisLeft: true,
|
|
93
|
+
// axisBottom: true,
|
|
94
|
+
// legendAvailable: true,
|
|
95
|
+
// legend: {
|
|
96
|
+
// labelColor: "green",
|
|
97
|
+
// legendTitle: "Branches",
|
|
98
|
+
// direction: "row",
|
|
99
|
+
// align: "right",
|
|
100
|
+
// },
|
|
101
101
|
},
|
|
102
102
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
103
|
+
// style: {
|
|
104
|
+
// containerStyle: {
|
|
105
|
+
// height:"340"
|
|
106
|
+
// },
|
|
107
|
+
// headerStyle: {},
|
|
108
|
+
// tooltipStyle: {
|
|
109
|
+
// // width: "100%",
|
|
110
|
+
// backgroundColor:"black",
|
|
111
|
+
// width:"80px"
|
|
112
|
+
// },
|
|
113
|
+
// labelStyle: {},
|
|
114
|
+
// legendStyle: {
|
|
115
|
+
// legend: {},
|
|
116
|
+
// legendTitle: {},
|
|
117
|
+
// },
|
|
118
|
+
// pieStyle: {},
|
|
119
|
+
// },
|
|
120
120
|
},
|
|
121
121
|
};
|
|
122
122
|
export const LineGraph = {
|