axidio-styleguide-library1-v2 0.5.36 → 0.5.38

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.
@@ -8008,13 +8008,6 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8008
8008
  // .text(trimmed)
8009
8009
  }
8010
8010
  });
8011
- if (isria) {
8012
- svg.selectAll('g.x1.axis1 g.tick text')
8013
- .attr('y', 12)
8014
- .attr('dy', '0')
8015
- .attr('x', 0)
8016
- .style('text-anchor', 'middle');
8017
- }
8018
8011
  }
8019
8012
  // Mobile/tablet override - check for single-group date charts first
8020
8013
  if (isMobile) {
@@ -8608,7 +8601,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8608
8601
  }))
8609
8602
  .call((g) => {
8610
8603
  g.select('.domain')
8611
- .style('stroke', 'var(--chart-domain-color, #b1abab)')
8604
+ .style('stroke', 'var(--chart-domain-color, #000000)')
8612
8605
  .style('stroke-width', '1px');
8613
8606
  })
8614
8607
  .selectAll('text')
@@ -8654,7 +8647,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8654
8647
  renderAxisLabels(svg, svgYAxisLeft, svgYAxisRight, metaData, width, height, margin, self, isria, rightSvgWidth) {
8655
8648
  // Y-axis label
8656
8649
  if (metaData.yLabel) {
8657
- const yPosition = isria ? 0 - margin.left / 2 - 30 : 0 - margin.left / 2 - 40;
8650
+ const yPosition = isria ? 0 - margin.left / 2 : 0 - margin.left / 2 - 40;
8658
8651
  svgYAxisLeft.append('text')
8659
8652
  .attr('class', 'lib-axis-group-label font-size-1')
8660
8653
  .attr('style', self.chartConfiguration.yAxisCustomlabelStyles)