axidio-styleguide-library1-v2 0.1.98 → 0.2.0
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.
|
@@ -8691,7 +8691,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8691
8691
|
.attr('fill', 'var(--chart-text-color)')
|
|
8692
8692
|
.attr('x', function (d) {
|
|
8693
8693
|
if (self.chartData.data.length > 8 && !self.isZoomedOut) {
|
|
8694
|
-
return
|
|
8694
|
+
return 1; // Move text slightly to the left
|
|
8695
8695
|
}
|
|
8696
8696
|
return 0; // Default position
|
|
8697
8697
|
})
|
|
@@ -9005,8 +9005,13 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9005
9005
|
return height - y(0);
|
|
9006
9006
|
})
|
|
9007
9007
|
.style('cursor', function (d) {
|
|
9008
|
-
if (metaData.hasDrillDown && !isria)
|
|
9008
|
+
if (metaData.hasDrillDown && !isria) {
|
|
9009
|
+
if (metaData.barWithoutClick.length > 0 &&
|
|
9010
|
+
metaData.barWithoutClick.includes(d.data.name.toLowerCase())) {
|
|
9011
|
+
return 'default';
|
|
9012
|
+
}
|
|
9009
9013
|
return 'pointer';
|
|
9014
|
+
}
|
|
9010
9015
|
else
|
|
9011
9016
|
return 'default';
|
|
9012
9017
|
})
|