axidio-styleguide-library1-v2 0.1.68 → 0.1.69
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.
|
@@ -9003,9 +9003,10 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9003
9003
|
.attr('fill', function (d) {
|
|
9004
9004
|
if (d.value &&
|
|
9005
9005
|
self.chartData.targetLineData &&
|
|
9006
|
-
|
|
9007
|
-
self.chartData.
|
|
9006
|
+
self.chartData.metaData.colorAboveTarget &&
|
|
9007
|
+
parseFloat(d.value) >= parseFloat(self.chartData.targetLineData.target)) {
|
|
9008
9008
|
return self.chartData.metaData.colorAboveTarget[d.key];
|
|
9009
|
+
}
|
|
9009
9010
|
return self.chartData.metaData.colors[d.key];
|
|
9010
9011
|
});
|
|
9011
9012
|
/**
|