axidio-styleguide-library1-v2 0.0.821 → 0.0.822

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.
@@ -8764,6 +8764,12 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8764
8764
  .attr('y', short_tick_length_bg)
8765
8765
  .text(function (d) {
8766
8766
  var isValueToBeIgnored = false;
8767
+ if (isMobile) {
8768
+ let trmLabel = d.trim();
8769
+ if (trmLabel.length > 3) {
8770
+ return trmLabel.substring(0, 3).toLowerCase();
8771
+ }
8772
+ }
8767
8773
  data.map((indiv) => {
8768
8774
  if (indiv.name.toLowerCase() == d.trim().toLowerCase() &&
8769
8775
  indiv[metaData.keyList[0]] == -1) {