axidio-styleguide-library1-v2 0.5.37 → 0.5.39
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.
|
@@ -8601,7 +8601,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8601
8601
|
}))
|
|
8602
8602
|
.call((g) => {
|
|
8603
8603
|
g.select('.domain')
|
|
8604
|
-
.style('stroke', 'var(--chart-domain-color, #
|
|
8604
|
+
.style('stroke', 'var(--chart-domain-color, #000000)')
|
|
8605
8605
|
.style('stroke-width', '1px');
|
|
8606
8606
|
})
|
|
8607
8607
|
.selectAll('text')
|
|
@@ -8645,7 +8645,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8645
8645
|
}
|
|
8646
8646
|
}
|
|
8647
8647
|
renderAxisLabels(svg, svgYAxisLeft, svgYAxisRight, metaData, width, height, margin, self, isria, rightSvgWidth) {
|
|
8648
|
-
// Y-axis label
|
|
8648
|
+
// Y-axis label pieces,uints etc
|
|
8649
8649
|
if (metaData.yLabel) {
|
|
8650
8650
|
const yPosition = isria ? 0 - margin.left / 2 - 30 : 0 - margin.left / 2 - 40;
|
|
8651
8651
|
svgYAxisLeft.append('text')
|
|
@@ -8672,7 +8672,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8672
8672
|
if (metaData.xLabel) {
|
|
8673
8673
|
const isAcronym = this.isLabelAcronym(metaData.xLabel);
|
|
8674
8674
|
const xPosition = isria
|
|
8675
|
-
? (height + margin.top + margin.bottom)
|
|
8675
|
+
? (height + margin.top + margin.bottom - 20)
|
|
8676
8676
|
: (height + margin.top + margin.bottom + 40);
|
|
8677
8677
|
svg.append('text')
|
|
8678
8678
|
.attr('class', this.getXLabelClass(self))
|
|
@@ -8856,14 +8856,14 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8856
8856
|
? this.chartConfiguration.svgHeight
|
|
8857
8857
|
: parseInt(verticalstackedcontainer.style('height'));
|
|
8858
8858
|
}
|
|
8859
|
-
if (this.chartConfiguration.isDrilldownChart && !this.isHeaderVisible
|
|
8859
|
+
if (this.chartConfiguration.isDrilldownChart && !this.isHeaderVisible) {
|
|
8860
8860
|
height =
|
|
8861
8861
|
parseInt(verticalstackedcontainer.style('height')) -
|
|
8862
8862
|
margin.top -
|
|
8863
8863
|
margin.bottom -
|
|
8864
8864
|
130;
|
|
8865
8865
|
}
|
|
8866
|
-
if (this.chartConfiguration.isHeaderVisible
|
|
8866
|
+
if (this.chartConfiguration.isHeaderVisible) {
|
|
8867
8867
|
height =
|
|
8868
8868
|
parseInt(verticalstackedcontainer.style('height')) -
|
|
8869
8869
|
margin.top -
|