gamma-app-controller 2.0.11 → 2.0.14
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 +143 -69
- package/esm2020/lib/application-controller/support-components/geo-map/geo-map.component.mjs +115 -3
- package/esm2020/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.mjs +98 -76
- package/esm2020/lib/shared/advanced-component/gamma-geo-chart/gamma-geo-chart.component.mjs +73 -2
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.mjs +3 -2
- package/fesm2015/gamma-app-controller.mjs +3883 -3599
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +3883 -3599
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/application-controller/support-components/dash-chart/dash-chart.component.d.ts +16 -8
- package/lib/application-controller/support-components/geo-map/geo-map.component.d.ts +13 -0
- package/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.d.ts +3 -5
- package/lib/shared/advanced-component/gamma-geo-chart/gamma-geo-chart.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -35,8 +35,12 @@ export declare class DashChartComponent implements OnInit {
|
|
|
35
35
|
title: string;
|
|
36
36
|
argumentField: string;
|
|
37
37
|
chartGroupBy: string;
|
|
38
|
+
isDataAggregation: boolean;
|
|
39
|
+
dataAggregationConfig: {
|
|
40
|
+
dataAggregateColumes: any[];
|
|
41
|
+
aggregateFields: any[];
|
|
42
|
+
};
|
|
38
43
|
dataGroupBy: string;
|
|
39
|
-
functionType: string;
|
|
40
44
|
chartSortBy: string;
|
|
41
45
|
verticalAlignment: string;
|
|
42
46
|
horizontalAlignment: string;
|
|
@@ -81,6 +85,7 @@ export declare class DashChartComponent implements OnInit {
|
|
|
81
85
|
chartWithThreeDimentionDataSeries: any;
|
|
82
86
|
isLoader: boolean;
|
|
83
87
|
userOptionContainer: any;
|
|
88
|
+
chartDataSource: any;
|
|
84
89
|
getChartConfigOutPut: EventEmitter<any>;
|
|
85
90
|
set chartconfigData(value: any);
|
|
86
91
|
setActiveTab(tab: string): void;
|
|
@@ -108,16 +113,19 @@ export declare class DashChartComponent implements OnInit {
|
|
|
108
113
|
addAssociatedParams(): void;
|
|
109
114
|
getSelectedEventType(e: any): void;
|
|
110
115
|
resetViewProprstise(): void;
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
dataSourceForChart: any[];
|
|
114
|
-
listOfGroupByData: string[];
|
|
115
|
-
};
|
|
116
|
-
getDataGroupBy(event: any): void;
|
|
117
|
-
getGroupDataForChart(previewdata: any[], chartConfig: any[], groupBy: string, functionType: any): {
|
|
116
|
+
getChartMultiSerisChart(event: any): void;
|
|
117
|
+
geChartWithGroupByForMultiSeris(previewdata: any[], argumentValue: string, valueField: string, groupBy: string): {
|
|
118
118
|
dataSourceForChart: any[];
|
|
119
119
|
listOfGroupByData: string[];
|
|
120
120
|
};
|
|
121
|
+
dataAggregationContainer: any[];
|
|
122
|
+
dataAggregateGroupByColume: any;
|
|
123
|
+
addAggregationColume(): void;
|
|
124
|
+
deleteAggregationColume(i: any): void;
|
|
125
|
+
onDataGroupByChange(event: any): void;
|
|
126
|
+
saveAggregationColume(): void;
|
|
127
|
+
getGroupDataForChart(data: any, aggregationConfig: any, groupByColumns: any): unknown[];
|
|
128
|
+
viewMapForTest(): void;
|
|
121
129
|
static ɵfac: i0.ɵɵFactoryDeclaration<DashChartComponent, never>;
|
|
122
130
|
static ɵcmp: i0.ɵɵComponentDeclaration<DashChartComponent, "app-dash-chart", never, { "chartconfigData": "datasetmodal"; }, { "getChartConfigOutPut": "getChartConfigOutPut"; }, never, never, false>;
|
|
123
131
|
}
|
|
@@ -81,6 +81,11 @@ export declare class GeoMapComponent {
|
|
|
81
81
|
zoom: string;
|
|
82
82
|
isValueFieldRangeSlider: boolean;
|
|
83
83
|
slideSpeed: number;
|
|
84
|
+
isDataAggregation: boolean;
|
|
85
|
+
dataAggregationConfig: {
|
|
86
|
+
dataAggregateColumes: any[];
|
|
87
|
+
aggregateFields: any[];
|
|
88
|
+
};
|
|
84
89
|
sliderValueField: string;
|
|
85
90
|
centerLat: string;
|
|
86
91
|
centerLng: string;
|
|
@@ -101,6 +106,7 @@ export declare class GeoMapComponent {
|
|
|
101
106
|
isLoader: boolean;
|
|
102
107
|
selectedViewConfigs: any;
|
|
103
108
|
userOptionContainer: any;
|
|
109
|
+
previewData: any;
|
|
104
110
|
constructor(commonService: CommonService, cdr: ChangeDetectorRef, service: ApplicationContentService, taostr: ToastrService);
|
|
105
111
|
activeTab: string;
|
|
106
112
|
createOtherComponentView: EventEmitter<any>;
|
|
@@ -128,6 +134,13 @@ export declare class GeoMapComponent {
|
|
|
128
134
|
changeMapType(event: any): void;
|
|
129
135
|
onLatLngKeyChange(event: any): void;
|
|
130
136
|
calculateCenterFromDatasource(): void;
|
|
137
|
+
dataAggregationContainer: any[];
|
|
138
|
+
dataAggregateGroupByColume: any;
|
|
139
|
+
addAggregationColume(): void;
|
|
140
|
+
deleteAggregationColume(i: any): void;
|
|
141
|
+
onDataGroupByChange(event: any): void;
|
|
142
|
+
saveAggregationColume(): void;
|
|
143
|
+
getGroupDataForChart(data: any, aggregationConfig: any, groupByColumns: any): unknown[];
|
|
131
144
|
static ɵfac: i0.ɵɵFactoryDeclaration<GeoMapComponent, never>;
|
|
132
145
|
static ɵcmp: i0.ɵɵComponentDeclaration<GeoMapComponent, "app-geo-map", never, { "chartconfigData": "datasetmodal"; }, { "createOtherComponentView": "createOtherComponentView"; }, never, never, false>;
|
|
133
146
|
}
|
package/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.d.ts
CHANGED
|
@@ -25,16 +25,14 @@ export declare class GammaAdvanceChartComponent implements OnInit {
|
|
|
25
25
|
isFullScreen: boolean;
|
|
26
26
|
heatChartDataSource: any;
|
|
27
27
|
bubbleChartData: any;
|
|
28
|
+
chartTypeWhenMultiSeries: any;
|
|
28
29
|
constructor(commonService: CommonService, toastr: ToastrService, kpiService: kpicommonService, renderer: Renderer2, el: ElementRef, cdr: ChangeDetectorRef, environment: any);
|
|
29
30
|
page_parms: any;
|
|
30
31
|
chartOrderBy: boolean;
|
|
31
32
|
chartDisplayDateFormat: any;
|
|
32
33
|
onChartPointClick: EventEmitter<any>;
|
|
33
34
|
set chartDataSource(value: any);
|
|
34
|
-
getGroupDataForChart(
|
|
35
|
-
dataSourceForChart: any[];
|
|
36
|
-
listOfGroupByData: string[];
|
|
37
|
-
};
|
|
35
|
+
getGroupDataForChart(data: any, aggregationConfig: any, groupByColumns: any): unknown[];
|
|
38
36
|
ngOnInit(): void;
|
|
39
37
|
getHourChart(data: any, dataConfig: any): void;
|
|
40
38
|
getMonthlyChart(data: any, dataConfig: any): void;
|
|
@@ -64,7 +62,7 @@ export declare class GammaAdvanceChartComponent implements OnInit {
|
|
|
64
62
|
};
|
|
65
63
|
getFormateDataByColorCode(filedata: any, valueField: any, minBubbleSize: any, maxBubbleSize: any): any;
|
|
66
64
|
mapRange(value: any, inMin: any, inMax: any, outMin: any, outMax: any): any;
|
|
67
|
-
|
|
65
|
+
geChartWithGroupByForMultiSeris(previewdata: any[], argumentValue: string, valueField: string, groupBy: string): {
|
|
68
66
|
dataSourceForChart: any[];
|
|
69
67
|
listOfGroupByData: string[];
|
|
70
68
|
};
|
|
@@ -51,6 +51,7 @@ export declare class GammaGeoChartComponent implements OnInit, AfterViewInit {
|
|
|
51
51
|
constructor(commonService: CommonService);
|
|
52
52
|
ngOnInit(): void;
|
|
53
53
|
ngAfterViewInit(): void;
|
|
54
|
+
getGroupDataForChart(data: any, aggregationConfig: any, groupByColumns: any): unknown[];
|
|
54
55
|
loadGoogleCharts(): void;
|
|
55
56
|
drawChart(): void;
|
|
56
57
|
getTooltip(data: any): string;
|