axidio-styleguide-library1-v2 0.6.16 → 0.6.17

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.
@@ -7906,7 +7906,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
7906
7906
  if (this.chartConfiguration.isMultiChartGridLine === undefined) {
7907
7907
  // Normal ticks for dashboard charts
7908
7908
  // Dynamically adjust Y translation for mobile
7909
- let translateY = height - 5;
7909
+ let translateY = height;
7910
7910
  if (isMobile) {
7911
7911
  translateY = height + 10; // Add extra space at the top for mobile
7912
7912
  }
@@ -8840,7 +8840,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8840
8840
  .style('fill', 'var(--chart-text-color)')
8841
8841
  .attr('transform', null);
8842
8842
  svg.select('.x-axis')
8843
- .attr('transform', `translate(0, ${height - margin.bottom + 10})`);
8843
+ .attr('transform', `translate(0, ${height - margin.bottom})`);
8844
8844
  }
8845
8845
  calculateChartDimensions(chartContainer, verticalstackedcontainer, margin, self) {
8846
8846
  let width = parseInt(chartContainer.style('width')) - margin.left - margin.right;