axidio-styleguide-library1-v2 0.0.919 → 0.0.920

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.
@@ -9032,7 +9032,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
9032
9032
  if (x.bandwidth() > 100) {
9033
9033
  // Grouped chart: increase bar width to 90% of slot
9034
9034
  if (subgroups.length > 1) {
9035
- const groupedBarWidth = x.bandwidth() * 0.9;
9035
+ const groupedBarWidth = x.bandwidth();
9036
9036
  const offset = (x.bandwidth() - groupedBarWidth) / 2;
9037
9037
  tempScale.range([offset, x.bandwidth() - offset]);
9038
9038
  }
@@ -9088,7 +9088,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
9088
9088
  if (x.bandwidth() > 100) {
9089
9089
  // Grouped chart: increase bar width to 90% of slot
9090
9090
  if (subgroups.length > 1) {
9091
- const groupedBarWidth = x.bandwidth() * 0.9;
9091
+ const groupedBarWidth = x.bandwidth();
9092
9092
  const offset = (x.bandwidth() - groupedBarWidth) / 2;
9093
9093
  tempScale.range([offset, x.bandwidth() - offset]);
9094
9094
  }