sag_components 1.0.751 → 1.0.753
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.
|
@@ -114,9 +114,6 @@ const BarChartsByWeeks = props => {
|
|
|
114
114
|
className: "EventWeeksLegendMainContainer"
|
|
115
115
|
}, displayEventWeeksElements());
|
|
116
116
|
const getControlsHeight = () => {
|
|
117
|
-
// headerValueTopTitle,
|
|
118
|
-
// headerValueBottomTitle,
|
|
119
|
-
// headerValue,
|
|
120
117
|
if (!(controlsContainerRef !== null && controlsContainerRef !== void 0 && controlsContainerRef.current)) return '100%';
|
|
121
118
|
const {
|
|
122
119
|
offsetHeight
|
|
@@ -226,9 +223,9 @@ BarChartsByWeeks.defaultProps = {
|
|
|
226
223
|
title: '',
|
|
227
224
|
headerValueTopTitle: '',
|
|
228
225
|
headerValueBottomTitle: '',
|
|
229
|
-
headerValue:
|
|
226
|
+
headerValue: 0,
|
|
230
227
|
HeaderValueCurrencyType: '',
|
|
231
|
-
HeaderValueIsPercent:
|
|
228
|
+
HeaderValueIsPercent: false,
|
|
232
229
|
barChartData: [{
|
|
233
230
|
title: '202320',
|
|
234
231
|
value: 542366
|
|
@@ -80,6 +80,7 @@ const PopupCharts = props => {
|
|
|
80
80
|
headerValueTopTitle: rowsData === null || rowsData === void 0 ? void 0 : rowsData.headerValueTopTitle,
|
|
81
81
|
headerValue: rowsData === null || rowsData === void 0 ? void 0 : rowsData.headerValue,
|
|
82
82
|
headerValueBottomTitle: rowsData === null || rowsData === void 0 ? void 0 : rowsData.headerValueBottomTitle,
|
|
83
|
+
HeaderValueIsPercent: rowsData === null || rowsData === void 0 ? void 0 : rowsData.isPercentValue,
|
|
83
84
|
legendData: rowsData === null || rowsData === void 0 ? void 0 : rowsData.legendData,
|
|
84
85
|
showLegend: rowsData === null || rowsData === void 0 ? void 0 : rowsData.showLegend,
|
|
85
86
|
barChartColor: rowsData === null || rowsData === void 0 ? void 0 : rowsData.barChartColor,
|