axidio-styleguide-library1-v2 0.0.950 → 0.0.951

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.
@@ -8838,6 +8838,8 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8838
8838
  var isValueToBeIgnored = false;
8839
8839
  // Check if this should show truncated text (mobile or ria conditions)
8840
8840
  const shouldTruncate = (isMobile && !self.isHeaderVisible) || (isria && self.chartData.data.length > 8);
8841
+ console.log('shouldTruncate:', shouldTruncate, 'isMobile:', isMobile, 'isHeaderVisible:', self.isHeaderVisible, 'isria:', isria, 'data.length:', self.chartData.data.length);
8842
+ alert(self.chartData.data.length);
8841
8843
  if (shouldTruncate) {
8842
8844
  let firstPart = d.split(/[\s\-]+/)[0];
8843
8845
  return firstPart.substring(0, 3).toLowerCase();