axidio-styleguide-library1-v2 0.0.833 → 0.0.835
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.
|
@@ -8761,7 +8761,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8761
8761
|
svg
|
|
8762
8762
|
.selectAll('g.x1.axis1 g.tick text')
|
|
8763
8763
|
.attr('class', 'lib-xaxis-labels-texts-drilldown')
|
|
8764
|
-
.style('font-size', '18px')
|
|
8764
|
+
.style('font-size', this.isHeaderVisible ? '18px' : '14px')
|
|
8765
8765
|
.attr('y', this.isHeaderVisible ? short_tick_length_bg + 25 : short_tick_length_bg)
|
|
8766
8766
|
.text(function (d) {
|
|
8767
8767
|
var isValueToBeIgnored = false;
|
|
@@ -9054,11 +9054,15 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9054
9054
|
});
|
|
9055
9055
|
return self.isZoomedOut
|
|
9056
9056
|
? tempScale.bandwidth()
|
|
9057
|
-
:
|
|
9057
|
+
: self.chartData.data.length && self.chartData.data.length > 8
|
|
9058
|
+
? tempScale.bandwidth() * 0.5
|
|
9059
|
+
: tempScale.bandwidth();
|
|
9058
9060
|
}
|
|
9059
9061
|
return self.isZoomedOut
|
|
9060
|
-
?
|
|
9061
|
-
:
|
|
9062
|
+
? tempScale.bandwidth()
|
|
9063
|
+
: self.chartData.data.length && self.chartData.data.length > 8
|
|
9064
|
+
? tempScale.bandwidth() * 0.5
|
|
9065
|
+
: tempScale.bandwidth();
|
|
9062
9066
|
})
|
|
9063
9067
|
.attr('height', function (d) {
|
|
9064
9068
|
if (d.value == -1) {
|
|
@@ -9365,8 +9369,8 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9365
9369
|
return metaData.colors[d.key];
|
|
9366
9370
|
})
|
|
9367
9371
|
.attr('width', self.isZoomedOut
|
|
9368
|
-
? xSubgroup.bandwidth()
|
|
9369
|
-
: xSubgroup.bandwidth()
|
|
9372
|
+
? xSubgroup.bandwidth()
|
|
9373
|
+
: xSubgroup.bandwidth())
|
|
9370
9374
|
.text(function (d) {
|
|
9371
9375
|
return d.value;
|
|
9372
9376
|
});
|