axidio-styleguide-library1-v2 0.1.37 → 0.1.39

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.
@@ -3278,7 +3278,7 @@ class GuageChartComponent extends ComponentUniqueId {
3278
3278
  ',' +
3279
3279
  topTextPosition +
3280
3280
  ')')
3281
- .attr('width', this.chartConfiguration.currentValueWidthScaleFactor + 3)
3281
+ .attr('width', this.chartConfiguration.currentValueWidthScaleFactor + 8)
3282
3282
  .attr('height', this.chartConfiguration.currentValueHeightScaleFactor)
3283
3283
  .append('xhtml:div')
3284
3284
  .attr('class', 'value-display')
@@ -7472,8 +7472,8 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
7472
7472
  return d.class;
7473
7473
  })
7474
7474
  .attr('width', function () {
7475
- if (xScale.bandwidth() + leftAndRightSpaces * 2 > 180) {
7476
- return '180px';
7475
+ if (xScale.bandwidth() + leftAndRightSpaces * 2 > 250) {
7476
+ return '250px';
7477
7477
  }
7478
7478
  return xScale.bandwidth() + leftAndRightSpaces * 2;
7479
7479
  })