axidio-styleguide-library1-v2 0.0.883 → 0.0.885

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.
@@ -4745,10 +4745,9 @@ class GroupChartComponent extends ComponentUniqueId {
4745
4745
  return baseClass + ' lib-axis-waterfall-label';
4746
4746
  })
4747
4747
  .attr('style', self.chartConfiguration.xAxisCustomlabelStyles)
4748
- .attr('transform', 'translate(' + width / 2 + ' ,' + (height + margin.top + margin.bottom + 10) + ')')
4748
+ .attr('transform', 'translate(' + width / 2 + ' ,' + (height + margin.top + margin.bottom) + ')')
4749
4749
  .style('text-anchor', 'middle')
4750
4750
  .style('fill', 'var(--chart-text-color)')
4751
- .style('color', 'var(--chart-text-color)')
4752
4751
  .text(isAcr ? xLabelText.toUpperCase() : xLabelText.toLowerCase())
4753
4752
  .style('text-transform', isAcr ? 'none' : 'capitalize');
4754
4753
  }
@@ -4776,7 +4775,7 @@ class GroupChartComponent extends ComponentUniqueId {
4776
4775
  .attr('height', 50)
4777
4776
  .append('xhtml:div')
4778
4777
  .attr('class', 'target-display')
4779
- .style('color', this.chartData.targetLineData.color)
4778
+ .style('color', 'var(--chart-text-color)')
4780
4779
  .html(function () {
4781
4780
  let dataTypeTemp = '';
4782
4781
  let targetLineName = 'target';
@@ -8229,7 +8228,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
8229
8228
  .attr('height', 50)
8230
8229
  .append('xhtml:div')
8231
8230
  .attr('class', 'target-display')
8232
- .style('color', this.chartData.targetLineData.color)
8231
+ .style('color', 'var(--chart-text-color)')
8233
8232
  .html(function (d, i) {
8234
8233
  let dataTypeTemp = '';
8235
8234
  let targetLineName = 'target';
@@ -8286,7 +8285,6 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
8286
8285
  .attr('transform', 'translate(' + width / 2 + ' ,' + xPosition + ')')
8287
8286
  .style('text-anchor', 'middle')
8288
8287
  .style('fill', 'var(--chart-text-color)')
8289
- .style('color', 'var(--chart-text-color)')
8290
8288
  .text(isAcr ? xLabelText.toUpperCase() : xLabelText.toLowerCase())
8291
8289
  .style('text-transform', isAcr ? 'none' : 'capitalize');
8292
8290
  }
@@ -9601,7 +9599,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
9601
9599
  .attr('height', 50)
9602
9600
  .append('xhtml:div')
9603
9601
  .attr('class', 'target-display')
9604
- .style('color', this.chartData.targetLineData.color)
9602
+ .style('color', 'var(--chart-text-color)')
9605
9603
  .html(function () {
9606
9604
  let dataTypeTemp = '';
9607
9605
  let targetLineName = 'target';
@@ -9652,7 +9650,6 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
9652
9650
  .attr('transform', 'translate(' + width / 2 + ' ,' + xPosition + ')')
9653
9651
  .style('text-anchor', 'middle')
9654
9652
  .style('fill', 'var(--chart-text-color)')
9655
- .style('color', 'var(--chart-text-color)')
9656
9653
  .text(isAcr ? xLabelText.toUpperCase() : xLabelText.toLowerCase())
9657
9654
  .style('text-transform', isAcr ? 'none' : 'capitalize');
9658
9655
  }