axidio-styleguide-library1-v2 0.3.77 → 0.3.79
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.
|
@@ -8032,7 +8032,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8032
8032
|
}
|
|
8033
8033
|
// Handle date labels in minimized view
|
|
8034
8034
|
if (labelInfo.isDate) {
|
|
8035
|
-
if (!self.isHeaderVisible &&
|
|
8035
|
+
if (!self.isHeaderVisible && d.indexOf(' ') > -1) {
|
|
8036
8036
|
const first = d.substring(0, d.indexOf(' '));
|
|
8037
8037
|
const second = d.substring(d.indexOf(' ') + 1).trim();
|
|
8038
8038
|
return `${first}\n${second}`;
|
|
@@ -8486,7 +8486,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8486
8486
|
const isAcronym = this.isLabelAcronym(metaData.xLabel);
|
|
8487
8487
|
const xPosition = isria
|
|
8488
8488
|
? (height + margin.top + margin.bottom)
|
|
8489
|
-
: (height + margin.top + margin.bottom +
|
|
8489
|
+
: (height + margin.top + margin.bottom + 48);
|
|
8490
8490
|
svg.append('text')
|
|
8491
8491
|
.attr('class', this.getXLabelClass(self))
|
|
8492
8492
|
.attr('style', self.chartConfiguration.xAxisCustomlabelStyles)
|