axidio-styleguide-library1-v2 0.0.894 → 0.0.897

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.
@@ -3964,7 +3964,8 @@ class GroupChartComponent extends ComponentUniqueId {
3964
3964
  .call((g) => g.select('.domain').remove());
3965
3965
  svg.selectAll('g.x1.axis1 g.tick line').remove();
3966
3966
  svg.selectAll('g.x1.axis1 g.tick text')
3967
- .attr('class', 'lib-xaxis-labels-texts-drilldown');
3967
+ .attr('class', 'lib-xaxis-labels-texts-drilldown')
3968
+ .style('fill', 'var(--chart-text-color)');
3968
3969
  // .attr('y', function () {
3969
3970
  // if (alternate_text) {
3970
3971
  // alternate_text = false;
@@ -4633,6 +4634,7 @@ class GroupChartComponent extends ComponentUniqueId {
4633
4634
  .attr('class', 'lib-yaxis-labels-texts-drilldown yaxis-dashed')
4634
4635
  .attr('style', self.chartConfiguration.yAxisCustomTextStyles)
4635
4636
  .attr('transform', 'translate(0,0)')
4637
+ .style('fill', 'var(--chart-text-color)')
4636
4638
  .call(d3
4637
4639
  .axisLeft(y)
4638
4640
  .tickSize(0)
@@ -4710,7 +4712,8 @@ class GroupChartComponent extends ComponentUniqueId {
4710
4712
  .attr('y', 0 - margin.left / 2 - 30)
4711
4713
  .attr('x', 0 - height / 2)
4712
4714
  .attr('dy', '1em')
4713
- .style('text-anchor', 'middle');
4715
+ .style('text-anchor', 'middle')
4716
+ .attr('fill', 'var(--chart-text-color)');
4714
4717
  if (this.chartConfiguration.isMultiChartGridLine == undefined) {
4715
4718
  svgYAxisLeft
4716
4719
  .selectAll('.lib-axis-group-label')