axidio-styleguide-library1-v2 0.5.33 → 0.5.34

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.
@@ -8255,7 +8255,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8255
8255
  .call(d3.axisLeft(y).ticks(self.chartConfiguration.numberOfYTicks).tickSize(-width))
8256
8256
  .style('color', 'var(--chart-axis-color, #B9B9B9)')
8257
8257
  .style('opacity', '0.5')
8258
- .call((g) => g.select('.domain').remove().style('stroke', 'var(--chart-domain-color, #000000)'));
8258
+ .call((g) => g.select('.domain').remove().style('stroke', 'var(--chart-domain-color, #abaaaa)'));
8259
8259
  }
8260
8260
  else {
8261
8261
  svg.append('g')
@@ -8263,7 +8263,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8263
8263
  .style('color', 'var(--chart-axis-color, #B9B9B9)')
8264
8264
  .style('opacity', '0.5')
8265
8265
  .call((g) => g.select('.domain')
8266
- .style('stroke', 'var(--chart-domain-color, #000000)')
8266
+ .style('stroke', 'var(--chart-domain-color, #abaaaa)')
8267
8267
  .style('stroke-width', '1px'));
8268
8268
  }
8269
8269
  }
@@ -8673,7 +8673,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8673
8673
  const isAcronym = this.isLabelAcronym(metaData.xLabel);
8674
8674
  const xPosition = isria
8675
8675
  ? (height + margin.top + margin.bottom)
8676
- : (height + margin.top + margin.bottom + 40);
8676
+ : (height + margin.top + margin.bottom + 20);
8677
8677
  svg.append('text')
8678
8678
  .attr('class', this.getXLabelClass(self))
8679
8679
  .attr('style', self.chartConfiguration.xAxisCustomlabelStyles)