axidio-styleguide-library1-v2 0.0.936 → 0.0.937

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.
@@ -8806,16 +8806,6 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8806
8806
  .selectAll('g.x1.axis1 g.tick text')
8807
8807
  .attr('class', 'lib-xaxis-labels-texts-drilldown')
8808
8808
  .style('font-size', this.isHeaderVisible ? '18px' : '14px')
8809
- .style('font-weight', function (d) {
8810
- // Make bold if grouped, no xLabel, date, and header not visible (+25 case)
8811
- if (subgroups.length > 1 &&
8812
- !metaData.xLabel &&
8813
- !self.isHeaderVisible &&
8814
- (/\d{2,4}[-\/]\d{2}[-\/]\d{2,4}/.test(d) || /\d{2,4}[-\/]\d{2,4}/.test(d))) {
8815
- return 'bold';
8816
- }
8817
- return null;
8818
- })
8819
8809
  .attr('y', function (d) {
8820
8810
  // If grouped chart, no xLabel, and label is a date, add extra offset
8821
8811
  let baseY = self.isHeaderVisible ? short_tick_length_bg + 25 : short_tick_length_bg;