axidio-styleguide-library1-v2 0.0.878 → 0.0.879

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.
@@ -9048,28 +9048,28 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
9048
9048
  if (x.bandwidth() > 100) {
9049
9049
  if (self.chartData.data.length == 1) {
9050
9050
  if (Object.keys(self.chartData.data[0]).length == 2) {
9051
- tempScale.range([
9051
+ return tempScale.range([
9052
9052
  0 + (x.bandwidth() - 125) / 2,
9053
9053
  x.bandwidth() - (x.bandwidth() - 125) / 2,
9054
9054
  ]);
9055
9055
  // .padding(0.05);
9056
9056
  }
9057
9057
  else
9058
- tempScale.range([
9058
+ return tempScale.range([
9059
9059
  0 + (x.bandwidth() - 125) / 2,
9060
9060
  x.bandwidth() - (x.bandwidth() - 125) / 2,
9061
9061
  ]);
9062
9062
  // .padding(0.05);
9063
9063
  }
9064
9064
  else
9065
- tempScale.range([
9065
+ return tempScale.range([
9066
9066
  0 + (x.bandwidth() - 125) / 2,
9067
9067
  x.bandwidth() - (x.bandwidth() - 125) / 2,
9068
9068
  ]);
9069
9069
  }
9070
9070
  }
9071
9071
  });
9072
- return tempScale.bandwidth() * 0.5;
9072
+ // return tempScale.bandwidth();
9073
9073
  }
9074
9074
  return xSubgroup.bandwidth();
9075
9075
  })