sag_components 1.0.910 → 1.0.911
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.
|
@@ -113,7 +113,7 @@ const SingleBarLineCharts = props => {
|
|
|
113
113
|
fontSize: "0.6em",
|
|
114
114
|
textAnchor: "middle",
|
|
115
115
|
dominantBaseline: "middle"
|
|
116
|
-
}, `${
|
|
116
|
+
}, `${currencySign}${(0, _CommonFunctions.getFormattedValue)(value)}${(0, _CommonFunctions.getFormattedUnits)(value)}${isTopBarPercent ? '%' : ''}`));
|
|
117
117
|
};
|
|
118
118
|
const CustomizedTickBarChart = props => {
|
|
119
119
|
const {
|
|
@@ -183,7 +183,7 @@ const SingleBarLineCharts = props => {
|
|
|
183
183
|
fontWeight: isLineChartBolded ? 600 : 400,
|
|
184
184
|
fontSize: "0.6em",
|
|
185
185
|
textAnchor: "middle"
|
|
186
|
-
}, `${isLineChartCurrency ?
|
|
186
|
+
}, `${isLineChartCurrency ? currencySignLine : ''}${(0, _CommonFunctions.getFormattedValue)(value)}${(0, _CommonFunctions.getFormattedUnits)(value)}`);
|
|
187
187
|
};
|
|
188
188
|
const isNegativeValueFound = () => {
|
|
189
189
|
if (data && data.length > 0) {
|