axidio-styleguide-library1-v2 0.6.66 → 0.6.67

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.
@@ -8241,9 +8241,9 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8241
8241
  }
8242
8242
  // Handle labels with spaces
8243
8243
  if (d.trim().indexOf(' ') > -1) {
8244
- return d.trim().substring(0, d.indexOf(' ')).toLowerCase();
8244
+ return d.trim().substring(0, d.indexOf(' '));
8245
8245
  }
8246
- return d.toLowerCase();
8246
+ return d;
8247
8247
  }
8248
8248
  calculateMaxValue(data, keyList) {
8249
8249
  let maxValue = d3.max(data, (d) => d3.max(keyList, (key) => +d[key]));