axidio-styleguide-library1-v2 0.3.55 → 0.3.56
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.
|
@@ -7109,7 +7109,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7109
7109
|
svg.selectAll('.x-axis > g > text').attr('class', 'lib-display-hidden');
|
|
7110
7110
|
}
|
|
7111
7111
|
if (!this.chartConfiguration.isMultiChartGridLine) {
|
|
7112
|
-
this.renderStandardAxes(svg, axes, scales, dimensions, data);
|
|
7112
|
+
this.renderStandardAxes(svg, svgYAxisLeft, axes, scales, dimensions, data);
|
|
7113
7113
|
}
|
|
7114
7114
|
else if (this.chartConfiguration.isDrilldownChart) {
|
|
7115
7115
|
this.renderDrilldownAxes(svg, svgYAxisLeft, svgYAxisRight, axes, scales, dimensions);
|
|
@@ -7120,7 +7120,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7120
7120
|
this.applyAxisStyling(svg, svgYAxisLeft, svgYAxisRight);
|
|
7121
7121
|
this.applyAxisConfigurations(svg, scales, dimensions, data);
|
|
7122
7122
|
}
|
|
7123
|
-
renderStandardAxes(svg, axes, scales, dimensions, data) {
|
|
7123
|
+
renderStandardAxes(svg, svgYAxisLeft, axes, scales, dimensions, data) {
|
|
7124
7124
|
const isMobileOrTablet = window.innerWidth < 1024;
|
|
7125
7125
|
// X-axis with labels
|
|
7126
7126
|
const xAxisGroup = svg
|
|
@@ -7156,6 +7156,14 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7156
7156
|
.call(axes.yAxis)
|
|
7157
7157
|
.selectAll('text')
|
|
7158
7158
|
.style('fill', 'var(--chart-text-color)');
|
|
7159
|
+
svgYAxisLeft
|
|
7160
|
+
.append('line')
|
|
7161
|
+
.attr('x1', 0)
|
|
7162
|
+
.attr('x2', 0)
|
|
7163
|
+
.attr('y1', 0)
|
|
7164
|
+
.attr('y2', dimensions.height)
|
|
7165
|
+
.style('stroke', 'var(--chart-axis-color)')
|
|
7166
|
+
.style('stroke-width', '1px');
|
|
7159
7167
|
}
|
|
7160
7168
|
renderDrilldownAxes(svg, svgYAxisLeft, svgYAxisRight, axes, scales, dimensions) {
|
|
7161
7169
|
svg
|