axidio-styleguide-library1-v2 0.0.933 → 0.0.934
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,9 +8839,6 @@ 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
|
-
}
|
|
8845
8842
|
if (isMobile && !self.isHeaderVisible) {
|
|
8846
8843
|
let firstPart = d.split(/[\s\-]+/)[0];
|
|
8847
8844
|
return firstPart.substring(0, 3).toLowerCase();
|
|
@@ -8897,11 +8894,6 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8897
8894
|
});
|
|
8898
8895
|
}
|
|
8899
8896
|
}
|
|
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
|
-
}
|
|
8905
8897
|
if (isMobile && !this.isHeaderVisible) {
|
|
8906
8898
|
svg
|
|
8907
8899
|
.selectAll('g.x1.axis1 g.tick text')
|
|
@@ -9608,7 +9600,8 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9608
9600
|
}
|
|
9609
9601
|
})
|
|
9610
9602
|
.style('fill', 'var(--chart-text-color)')
|
|
9611
|
-
.attr('transform',
|
|
9603
|
+
.attr('transform', 'rotate(-90)')
|
|
9604
|
+
.style('text-anchor', 'end'); // Rotate only for this chart in zoomed-out mode
|
|
9612
9605
|
// Optional: Adjust bottom margin or chart layout
|
|
9613
9606
|
svg
|
|
9614
9607
|
.select('.x-axis')
|