axidio-styleguide-library1-v2 0.0.960 → 0.0.961
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.
|
@@ -3833,13 +3833,20 @@ class GroupChartComponent extends ComponentUniqueId {
|
|
|
3833
3833
|
? this.chartConfiguration.svgHeight
|
|
3834
3834
|
: parseInt(verticalstackedcontainer.style('height'));
|
|
3835
3835
|
}
|
|
3836
|
-
if (this.chartConfiguration.isDrilldownChart) {
|
|
3836
|
+
if (this.chartConfiguration.isDrilldownChart && !this.isHeaderVisible) {
|
|
3837
3837
|
height =
|
|
3838
3838
|
parseInt(verticalstackedcontainer.style('height')) -
|
|
3839
3839
|
margin.top -
|
|
3840
3840
|
margin.bottom -
|
|
3841
3841
|
130;
|
|
3842
3842
|
}
|
|
3843
|
+
if (this.chartConfiguration.isHeaderVisible) {
|
|
3844
|
+
height =
|
|
3845
|
+
parseInt(verticalstackedcontainer.style('height')) -
|
|
3846
|
+
margin.top -
|
|
3847
|
+
margin.bottom -
|
|
3848
|
+
100;
|
|
3849
|
+
}
|
|
3843
3850
|
/**
|
|
3844
3851
|
* for hiding header
|
|
3845
3852
|
* used by weekly charts
|
|
@@ -4583,6 +4590,7 @@ class GroupChartComponent extends ComponentUniqueId {
|
|
|
4583
4590
|
.call(y)
|
|
4584
4591
|
.style('display', 'none');
|
|
4585
4592
|
svgYAxisLeft
|
|
4593
|
+
.append('g')
|
|
4586
4594
|
.append('g')
|
|
4587
4595
|
.attr('class', 'lib-yaxis-labels-texts-drilldown yaxis-dashed')
|
|
4588
4596
|
.attr('style', self.chartConfiguration.yAxisCustomTextStyles)
|