axidio-styleguide-library1-v2 0.0.900 → 0.0.902

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) || isria) {
8810
+ if ((isMobile && !self.isHeaderVisible) || (isria && self.chartData.data.length > 8)) {
8811
8811
  let firstPart = d.split(/[\s\-]+/)[0];
8812
8812
  return firstPart.substring(0, 3).toLowerCase();
8813
8813
  }
@@ -8853,7 +8853,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8853
8853
  });
8854
8854
  }
8855
8855
  }
8856
- if ((isMobile && !this.isHeaderVisible) || isria) {
8856
+ if ((isMobile && !this.isHeaderVisible) || (isria && self.chartData.data.length > 8)) {
8857
8857
  svg
8858
8858
  .selectAll('g.x1.axis1 g.tick text')
8859
8859
  .classed('mobile-xaxis-override', true);