gamma-app-controller 1.2.20 → 1.2.22
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/esm2020/lib/application-controller/support-components/dash-chart/dash-chart.component.mjs +48 -6
- package/esm2020/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.mjs +34 -3
- package/fesm2015/gamma-app-controller.mjs +80 -7
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +80 -7
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/application-controller/support-components/dash-chart/dash-chart.component.d.ts +9 -0
- package/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare class DashChartComponent implements OnInit {
|
|
|
16
16
|
componentName: any;
|
|
17
17
|
isJsonPreview: boolean;
|
|
18
18
|
dataSourseForChart: any;
|
|
19
|
+
previewData: any;
|
|
19
20
|
chartAxisSource: {
|
|
20
21
|
name: string;
|
|
21
22
|
value: string;
|
|
@@ -33,6 +34,7 @@ export declare class DashChartComponent implements OnInit {
|
|
|
33
34
|
dataConfig: {
|
|
34
35
|
title: string;
|
|
35
36
|
argumentField: string;
|
|
37
|
+
chartGroupBy: string;
|
|
36
38
|
verticalAlignment: string;
|
|
37
39
|
horizontalAlignment: string;
|
|
38
40
|
size: string;
|
|
@@ -67,10 +69,12 @@ export declare class DashChartComponent implements OnInit {
|
|
|
67
69
|
isEditWidget: boolean;
|
|
68
70
|
heatChartDataSource: any;
|
|
69
71
|
bubbleChartData: any;
|
|
72
|
+
isAdvanceContainer: boolean;
|
|
70
73
|
viewProperties: any;
|
|
71
74
|
optionalDrilDownDataSource: any;
|
|
72
75
|
allConfiguredViews: any;
|
|
73
76
|
allConfiguredPage: any;
|
|
77
|
+
stackbarChartSerise: any;
|
|
74
78
|
isLoader: boolean;
|
|
75
79
|
getChartConfigOutPut: EventEmitter<any>;
|
|
76
80
|
set chartconfigData(value: any);
|
|
@@ -99,6 +103,11 @@ export declare class DashChartComponent implements OnInit {
|
|
|
99
103
|
addAssociatedParams(): void;
|
|
100
104
|
getSelectedEventType(e: any): void;
|
|
101
105
|
resetViewProprstise(): void;
|
|
106
|
+
getChartStackbarChart(event: any): void;
|
|
107
|
+
getStackBarChart(previewdata: any[], argumentValue: string, valueField: string, groupBy: string): {
|
|
108
|
+
dataSourceForChart: any[];
|
|
109
|
+
listOfGroupByData: string[];
|
|
110
|
+
};
|
|
102
111
|
static ɵfac: i0.ɵɵFactoryDeclaration<DashChartComponent, never>;
|
|
103
112
|
static ɵcmp: i0.ɵɵComponentDeclaration<DashChartComponent, "app-dash-chart", never, { "chartconfigData": "datasetmodal"; }, { "getChartConfigOutPut": "getChartConfigOutPut"; }, never, never, false>;
|
|
104
113
|
}
|
package/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export declare class GammaAdvanceChartComponent implements OnInit {
|
|
|
20
20
|
isChartvisible: boolean;
|
|
21
21
|
creatChartDataSource: any;
|
|
22
22
|
finalChartDataSource: any;
|
|
23
|
+
stackbarChartSerise: any;
|
|
23
24
|
chartHeight: any;
|
|
24
25
|
isFullScreen: boolean;
|
|
25
26
|
heatChartDataSource: any;
|
|
@@ -59,6 +60,10 @@ export declare class GammaAdvanceChartComponent implements OnInit {
|
|
|
59
60
|
};
|
|
60
61
|
getFormateDataByColorCode(filedata: any, valueField: any, minBubbleSize: any, maxBubbleSize: any): any;
|
|
61
62
|
mapRange(value: any, inMin: any, inMax: any, outMin: any, outMax: any): any;
|
|
63
|
+
getStackBarChart(previewdata: any[], argumentValue: string, valueField: string, groupBy: string): {
|
|
64
|
+
dataSourceForChart: any[];
|
|
65
|
+
listOfGroupByData: string[];
|
|
66
|
+
};
|
|
62
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<GammaAdvanceChartComponent, never>;
|
|
63
68
|
static ɵcmp: i0.ɵɵComponentDeclaration<GammaAdvanceChartComponent, "app-gamma-advance-chart", never, { "componentId": "componentId"; "kpi_name": "kpi_name"; "chartDataSource": "chartDataSource"; }, { "onChartPointClick": "onChartPointClick"; }, never, never, false>;
|
|
64
69
|
}
|