axidio-styleguide-library1-v2 0.0.786 → 0.0.787

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.
@@ -8892,14 +8892,14 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8892
8892
  }
8893
8893
  var xSubgroup = d3.scaleBand().domain(subgroups);
8894
8894
  if (this.chartConfiguration.isMultiChartGridLine == undefined) {
8895
- xSubgroup.range([0, x.bandwidth()]);
8895
+ xSubgroup.range([0, x.bandwidth()]).padding(0.5);
8896
8896
  }
8897
8897
  else {
8898
8898
  /**
8899
8899
  * used to make grouped bars with lesser width as we are not using padding for width
8900
8900
  * used by weekly charts
8901
8901
  */
8902
- xSubgroup.range([0, x.bandwidth()]);
8902
+ xSubgroup.range([0, x.bandwidth()]).padding(0.5);
8903
8903
  }
8904
8904
  // if (this.chartConfiguration.isDrilldownChart) {
8905
8905
  // }
@@ -9028,7 +9028,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
9028
9028
  });
9029
9029
  return tempScale.bandwidth();
9030
9030
  }
9031
- return xSubgroup.bandwidth();
9031
+ return xSubgroup.bandwidth() * 0.6;
9032
9032
  })
9033
9033
  .attr('height', function (d) {
9034
9034
  if (d.value == -1) {