axidio-styleguide-library1-v2 0.3.56 → 0.3.58
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.
|
@@ -6667,7 +6667,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
6667
6667
|
.attr('width', '80')
|
|
6668
6668
|
.attr('height', dimensions.height + margin.top + margin.bottom)
|
|
6669
6669
|
.append('g')
|
|
6670
|
-
.attr('transform', `translate(
|
|
6670
|
+
.attr('transform', `translate(70,${margin.top})`);
|
|
6671
6671
|
// Right Y-axis - Fixed
|
|
6672
6672
|
const rightAxisContainer = chartWrapper
|
|
6673
6673
|
.append('div')
|
|
@@ -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,
|
|
7112
|
+
this.renderStandardAxes(svg, 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,
|
|
7123
|
+
renderStandardAxes(svg, axes, scales, dimensions, data) {
|
|
7124
7124
|
const isMobileOrTablet = window.innerWidth < 1024;
|
|
7125
7125
|
// X-axis with labels
|
|
7126
7126
|
const xAxisGroup = svg
|
|
@@ -7156,14 +7156,6 @@ 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');
|
|
7167
7159
|
}
|
|
7168
7160
|
renderDrilldownAxes(svg, svgYAxisLeft, svgYAxisRight, axes, scales, dimensions) {
|
|
7169
7161
|
svg
|