axidio-styleguide-library1-v2 0.0.897 → 0.0.899
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.
|
@@ -4139,7 +4139,7 @@ class GroupChartComponent extends ComponentUniqueId {
|
|
|
4139
4139
|
.attr('transform', 'translate(' + x.bandwidth() / 2 + ',' + height + ')')
|
|
4140
4140
|
.call(d3.axisBottom(x).tickSize(-height).tickFormat(''))
|
|
4141
4141
|
.style('stroke-dasharray', '5 5')
|
|
4142
|
-
.style('color', '#999999')
|
|
4142
|
+
.style('color', 'var(--chart-grid-color, #999999)')
|
|
4143
4143
|
.call((g) => g.select('.domain').remove());
|
|
4144
4144
|
}
|
|
4145
4145
|
if (this.chartConfiguration.yAxisGrid) {
|
|
@@ -4152,7 +4152,7 @@ class GroupChartComponent extends ComponentUniqueId {
|
|
|
4152
4152
|
.axisLeft(y)
|
|
4153
4153
|
.ticks(self.chartConfiguration.numberOfYTicks)
|
|
4154
4154
|
.tickSize(-width))
|
|
4155
|
-
.style('color', '#B9B9B9')
|
|
4155
|
+
.style('color', 'var(--chart-axis-color, #B9B9B9)')
|
|
4156
4156
|
.style('opacity', '0.5')
|
|
4157
4157
|
.call((g) => g.select('.domain').remove());
|
|
4158
4158
|
}
|
|
@@ -4634,12 +4634,13 @@ class GroupChartComponent extends ComponentUniqueId {
|
|
|
4634
4634
|
.attr('class', 'lib-yaxis-labels-texts-drilldown yaxis-dashed')
|
|
4635
4635
|
.attr('style', self.chartConfiguration.yAxisCustomTextStyles)
|
|
4636
4636
|
.attr('transform', 'translate(0,0)')
|
|
4637
|
-
.style('fill', 'var(--chart-text-color)')
|
|
4638
4637
|
.call(d3
|
|
4639
4638
|
.axisLeft(y)
|
|
4640
4639
|
.tickSize(0)
|
|
4641
4640
|
.ticks(self.chartConfiguration.numberOfYTicks)
|
|
4642
|
-
.tickFormat(self.chartConfiguration.yAxisLabelFomatter))
|
|
4641
|
+
.tickFormat(self.chartConfiguration.yAxisLabelFomatter))
|
|
4642
|
+
.selectAll('text')
|
|
4643
|
+
.style('fill', 'var(--chart-text-color)');
|
|
4643
4644
|
svgYAxisRight
|
|
4644
4645
|
.append('g')
|
|
4645
4646
|
.attr('class', 'lib-yaxis-labels-texts-drilldown yaxis-dashed')
|