axidio-styleguide-library1-v2 0.0.899 → 0.0.901
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.
|
@@ -8807,7 +8807,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8807
8807
|
})
|
|
8808
8808
|
.text(function (d) {
|
|
8809
8809
|
var isValueToBeIgnored = false;
|
|
8810
|
-
if (isMobile && !self.isHeaderVisible) {
|
|
8810
|
+
if ((isMobile && !self.isHeaderVisible) || (isria && self.isZoomedOut)) {
|
|
8811
8811
|
let firstPart = d.split(/[\s\-]+/)[0];
|
|
8812
8812
|
return firstPart.substring(0, 3).toLowerCase();
|
|
8813
8813
|
}
|
|
@@ -8829,7 +8829,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8829
8829
|
}
|
|
8830
8830
|
return d.toLowerCase();
|
|
8831
8831
|
});
|
|
8832
|
-
if (!isMobile) {
|
|
8832
|
+
if (!isMobile && !isria) {
|
|
8833
8833
|
svg
|
|
8834
8834
|
.selectAll('g.x1.axis1 g.tick')
|
|
8835
8835
|
.filter(function (d) {
|
|
@@ -8853,7 +8853,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8853
8853
|
});
|
|
8854
8854
|
}
|
|
8855
8855
|
}
|
|
8856
|
-
if (isMobile && !this.isHeaderVisible) {
|
|
8856
|
+
if ((isMobile && !this.isHeaderVisible) || (isria && self.isZoomedOut)) {
|
|
8857
8857
|
svg
|
|
8858
8858
|
.selectAll('g.x1.axis1 g.tick text')
|
|
8859
8859
|
.classed('mobile-xaxis-override', true);
|