axidio-styleguide-library1-v2 0.0.887 → 0.0.888

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.
@@ -3882,7 +3882,7 @@ class GroupChartComponent extends ComponentUniqueId {
3882
3882
  var svgYAxisLeft = outerContainer
3883
3883
  .append('svg')
3884
3884
  .attr('width', '100')
3885
- .attr('height', (height + margin.top + margin.bottom) - 20)
3885
+ .attr('height', height + margin.top + margin.bottom + 10)
3886
3886
  .style('position', 'absolute')
3887
3887
  .style('left', '0')
3888
3888
  .style('z-index', 1)
@@ -3891,7 +3891,7 @@ class GroupChartComponent extends ComponentUniqueId {
3891
3891
  var svgYAxisRight = outerContainer
3892
3892
  .append('svg')
3893
3893
  .attr('width', rightSvgWidth)
3894
- .attr('height', (height + margin.top + margin.bottom) - 20)
3894
+ .attr('height', height + margin.top + margin.bottom + 10)
3895
3895
  .style('position', 'absolute')
3896
3896
  .style('right', '12px')
3897
3897
  .style('z-index', 1)
@@ -3906,7 +3906,7 @@ class GroupChartComponent extends ComponentUniqueId {
3906
3906
  .append('svg')
3907
3907
  // .attr('id', self.uniqueId)
3908
3908
  .attr('width', width - rightSvgWidth)
3909
- .attr('height', (height + margin.top + margin.bottom) - 20)
3909
+ .attr('height', height + margin.top + margin.bottom + 30)
3910
3910
  // .call(ChartHelper.responsivefy)
3911
3911
  .append('g')
3912
3912
  .attr('transform', 'translate(' + 0 + ',' + margin.top + ')');