axidio-styleguide-library1-v2 0.0.932 → 0.0.933
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.
|
@@ -8839,6 +8839,9 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8839
8839
|
})
|
|
8840
8840
|
.text(function (d) {
|
|
8841
8841
|
var isValueToBeIgnored = false;
|
|
8842
|
+
if (isria && self.chartData.data.length > 8) {
|
|
8843
|
+
return d.substring(0, 3).toLowerCase();
|
|
8844
|
+
}
|
|
8842
8845
|
if (isMobile && !self.isHeaderVisible) {
|
|
8843
8846
|
let firstPart = d.split(/[\s\-]+/)[0];
|
|
8844
8847
|
return firstPart.substring(0, 3).toLowerCase();
|
|
@@ -8894,6 +8897,11 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8894
8897
|
});
|
|
8895
8898
|
}
|
|
8896
8899
|
}
|
|
8900
|
+
if (isria && self.chartData.data.length > 8) {
|
|
8901
|
+
svg
|
|
8902
|
+
.selectAll('g.x1.axis1 g.tick text')
|
|
8903
|
+
.classed('mobile-xaxis-override', true);
|
|
8904
|
+
}
|
|
8897
8905
|
if (isMobile && !this.isHeaderVisible) {
|
|
8898
8906
|
svg
|
|
8899
8907
|
.selectAll('g.x1.axis1 g.tick text')
|