axidio-styleguide-library1-v2 0.0.846 → 0.0.847
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.
- package/esm2022/lib/horizontal-bars-with-scroll-zoom/horizontal-bars-with-scroll-zoom.component.mjs +2 -2
- package/esm2022/lib/horizontal-grouped-bar-with-scroll-zoom/horizontal-grouped-bar-with-scroll-zoom.component.mjs +6 -6
- package/fesm2022/axidio-styleguide-library1-v2.mjs +6 -6
- package/fesm2022/axidio-styleguide-library1-v2.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -8168,7 +8168,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8168
8168
|
})
|
|
8169
8169
|
.attr('style', self.chartConfiguration.yAxisCustomlabelStyles)
|
|
8170
8170
|
.attr('transform', 'rotate(-90)')
|
|
8171
|
-
.attr('y', 0 - margin.left / 2 -
|
|
8171
|
+
.attr('y', 0 - margin.left / 2 - 40)
|
|
8172
8172
|
.attr('x', 0 - height / 2)
|
|
8173
8173
|
.attr('dy', '1em')
|
|
8174
8174
|
.style('text-anchor', 'middle')
|
|
@@ -9162,15 +9162,15 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9162
9162
|
if (self.chartData.data.length == 1) {
|
|
9163
9163
|
if (Object.keys(self.chartData.data[0]).length == 2) {
|
|
9164
9164
|
tempScale.range([
|
|
9165
|
-
0 + (x.bandwidth() -
|
|
9166
|
-
x.bandwidth() - (x.bandwidth() -
|
|
9165
|
+
0 + (x.bandwidth() - 200) / 2,
|
|
9166
|
+
x.bandwidth() - (x.bandwidth() - 200) / 2,
|
|
9167
9167
|
]);
|
|
9168
9168
|
// .padding(0.05);
|
|
9169
9169
|
}
|
|
9170
9170
|
else
|
|
9171
9171
|
tempScale.range([
|
|
9172
|
-
0 + (x.bandwidth() -
|
|
9173
|
-
x.bandwidth() - (x.bandwidth() -
|
|
9172
|
+
0 + (x.bandwidth() - 300) / 2,
|
|
9173
|
+
x.bandwidth() - (x.bandwidth() - 300) / 2,
|
|
9174
9174
|
]);
|
|
9175
9175
|
// .padding(0.05);
|
|
9176
9176
|
}
|
|
@@ -9618,7 +9618,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9618
9618
|
return baseClass + ' lib-axis-waterfall-label';
|
|
9619
9619
|
})
|
|
9620
9620
|
.attr('style', self.chartConfiguration.xAxisCustomlabelStyles)
|
|
9621
|
-
.attr('transform', 'translate(' + width / 2 + ' ,' + (height + margin.top +
|
|
9621
|
+
.attr('transform', 'translate(' + width / 2 + ' ,' + (height + margin.top + 40) + ')')
|
|
9622
9622
|
.style('text-anchor', 'middle')
|
|
9623
9623
|
.style('fill', 'var(--chart-text-color)')
|
|
9624
9624
|
.style('color', 'var(--chart-text-color)')
|