axidio-styleguide-library1-v2 0.0.898 → 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
|
}
|