axidio-styleguide-library1-v2 0.5.37 → 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.
@@ -8601,7 +8601,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8601
8601
  }))
8602
8602
  .call((g) => {
8603
8603
  g.select('.domain')
8604
- .style('stroke', 'var(--chart-domain-color, #b1abab)')
8604
+ .style('stroke', 'var(--chart-domain-color, #000000)')
8605
8605
  .style('stroke-width', '1px');
8606
8606
  })
8607
8607
  .selectAll('text')
@@ -8647,7 +8647,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8647
8647
  renderAxisLabels(svg, svgYAxisLeft, svgYAxisRight, metaData, width, height, margin, self, isria, rightSvgWidth) {
8648
8648
  // Y-axis label
8649
8649
  if (metaData.yLabel) {
8650
- 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;
8651
8651
  svgYAxisLeft.append('text')
8652
8652
  .attr('class', 'lib-axis-group-label font-size-1')
8653
8653
  .attr('style', self.chartConfiguration.yAxisCustomlabelStyles)
@@ -8856,14 +8856,14 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8856
8856
  ? this.chartConfiguration.svgHeight
8857
8857
  : parseInt(verticalstackedcontainer.style('height'));
8858
8858
  }
8859
- if (this.chartConfiguration.isDrilldownChart && !this.isHeaderVisible && !isria) {
8859
+ if (this.chartConfiguration.isDrilldownChart && !this.isHeaderVisible) {
8860
8860
  height =
8861
8861
  parseInt(verticalstackedcontainer.style('height')) -
8862
8862
  margin.top -
8863
8863
  margin.bottom -
8864
8864
  130;
8865
8865
  }
8866
- if (this.chartConfiguration.isHeaderVisible && !isria) {
8866
+ if (this.chartConfiguration.isHeaderVisible) {
8867
8867
  height =
8868
8868
  parseInt(verticalstackedcontainer.style('height')) -
8869
8869
  margin.top -