axidio-styleguide-library1-v2 0.2.87 → 0.2.89

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.
@@ -7858,7 +7858,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
7858
7858
  .style('text-anchor', 'middle');
7859
7859
  }
7860
7860
  // Mobile/tablet override - check for single-group date charts first
7861
- if (isMobile || isTablet) {
7861
+ if (isMobile) {
7862
7862
  const textNodes = svg.selectAll('g.x1.axis1 g.tick text');
7863
7863
  const groupsCount = data.length || 0;
7864
7864
  // Check if we have dates in x-axis and single group
@@ -7886,15 +7886,6 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
7886
7886
  // Default mobile behavior for non-date or multi-group
7887
7887
  textNodes.classed('mobile-xaxis-override', true);
7888
7888
  }
7889
- // If there are many groups on mobile/tablet AND this is a grouped chart,
7890
- // rotate labels to sideways to avoid overlapping and make them readable.
7891
- // Do NOT rotate for single-bar charts on tablet/mobile.
7892
- if (groupsCount > 3 && subgroups && subgroups.length > 1) {
7893
- svg.selectAll('g.x1.axis1 g.tick text')
7894
- .style('writing-mode', 'sideways-lr')
7895
- .style('text-anchor', 'middle')
7896
- .attr('y', 0);
7897
- }
7898
7889
  }
7899
7890
  }
7900
7891
  applyXLabelsOnSameLine(svg, subgroups, data, metaData, self, shortTickLengthBg, isMobile, isria) {