dtable-statistic 4.0.5 → 4.0.6
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.
|
@@ -68,7 +68,7 @@ var DashBoardService = /*#__PURE__*/function () {
|
|
|
68
68
|
}
|
|
69
69
|
case STAT_TYPE.PIE:
|
|
70
70
|
{
|
|
71
|
-
return _this.chartService.
|
|
71
|
+
return _this.chartService.generatorChart(_objectSpread(_objectSpread({}, chart), {}, {
|
|
72
72
|
type: STAT_TYPE.RING
|
|
73
73
|
}));
|
|
74
74
|
}
|
|
@@ -93,7 +93,7 @@ var DashBoardService = /*#__PURE__*/function () {
|
|
|
93
93
|
if (summary_type === SUMMARY_TYPE.ADVANCED && summary_columns_option && summary_columns_option.length > 0) {
|
|
94
94
|
convertedChart.column_groupby_multiple_numeric_column = true;
|
|
95
95
|
}
|
|
96
|
-
return this.chartService.
|
|
96
|
+
return this.chartService.generatorChart(convertedChart);
|
|
97
97
|
}
|
|
98
98
|
}, {
|
|
99
99
|
key: "convertChartBar",
|
|
@@ -121,7 +121,7 @@ var DashBoardService = /*#__PURE__*/function () {
|
|
|
121
121
|
}).filter(Boolean);
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
|
-
return this.chartService.
|
|
124
|
+
return this.chartService.generatorChart(convertedChart);
|
|
125
125
|
}
|
|
126
126
|
}, {
|
|
127
127
|
key: "convertChartLine",
|
|
@@ -145,7 +145,7 @@ var DashBoardService = /*#__PURE__*/function () {
|
|
|
145
145
|
}).filter(Boolean);
|
|
146
146
|
}
|
|
147
147
|
}
|
|
148
|
-
return this.chartService.
|
|
148
|
+
return this.chartService.generatorChart(convertedChart);
|
|
149
149
|
}
|
|
150
150
|
}, {
|
|
151
151
|
key: "mergeAdvancedStatistics",
|