axidio-styleguide-library1-v2 0.0.832 → 0.0.834

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.
@@ -8761,7 +8761,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8761
8761
  svg
8762
8762
  .selectAll('g.x1.axis1 g.tick text')
8763
8763
  .attr('class', 'lib-xaxis-labels-texts-drilldown')
8764
- .style('font-size', '18px')
8764
+ .style('font-size', this.isHeaderVisible ? '18px' : '14px')
8765
8765
  .attr('y', this.isHeaderVisible ? short_tick_length_bg + 25 : short_tick_length_bg)
8766
8766
  .text(function (d) {
8767
8767
  var isValueToBeIgnored = false;
@@ -9058,7 +9058,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
9058
9058
  });
9059
9059
  return self.isZoomedOut
9060
9060
  ? tempScale.bandwidth()
9061
- : tempScale.bandwidth();
9061
+ : tempScale.bandwidth() * 0.5;
9062
9062
  }
9063
9063
  return self.isZoomedOut
9064
9064
  ? xSubgroup.bandwidth()
@@ -9372,8 +9372,8 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
9372
9372
  return metaData.colors[d.key];
9373
9373
  })
9374
9374
  .attr('width', self.isZoomedOut
9375
- ? xSubgroup.bandwidth() * 0.5
9376
- : xSubgroup.bandwidth() * 0.8)
9375
+ ? xSubgroup.bandwidth()
9376
+ : xSubgroup.bandwidth())
9377
9377
  .text(function (d) {
9378
9378
  return d.value;
9379
9379
  });