axidio-styleguide-library1-v2 0.0.960 → 0.0.962

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.
@@ -3683,7 +3683,7 @@ class GroupChartComponent extends ComponentUniqueId {
3683
3683
  headerMenuOptions: HeaderConfigHelper.headerConfig.headerMenuOptions,
3684
3684
  xAxisGrid: undefined,
3685
3685
  yAxisGrid: false,
3686
- legendVisible: true,
3686
+ legendVisible: false,
3687
3687
  isHeaderVisible: undefined,
3688
3688
  isTransparentBackground: undefined,
3689
3689
  isMultiChartGridLine: undefined,
@@ -3708,13 +3708,14 @@ class GroupChartComponent extends ComponentUniqueId {
3708
3708
  xLabelsOnSameLine: undefined,
3709
3709
  textAlwaysHorizontal: undefined,
3710
3710
  legendAtTopRight: undefined,
3711
- isDrilldownChart: undefined,
3711
+ isDrilldownChart: true,
3712
3712
  displayTitleOnTop: undefined,
3713
3713
  isToggleVisible: undefined,
3714
3714
  isTitleHidden: undefined,
3715
3715
  isDisplayBarDetailsAtBottom: undefined,
3716
3716
  howmanyBarDetailsToDisplay: 0,
3717
3717
  barVauleColor: undefined,
3718
+ defaultBarHeight: 2,
3718
3719
  };
3719
3720
  this.uniqueId = this.getUniqueId();
3720
3721
  this.isZoomedOut = false;
@@ -3833,13 +3834,20 @@ class GroupChartComponent extends ComponentUniqueId {
3833
3834
  ? this.chartConfiguration.svgHeight
3834
3835
  : parseInt(verticalstackedcontainer.style('height'));
3835
3836
  }
3836
- if (this.chartConfiguration.isDrilldownChart) {
3837
+ if (this.chartConfiguration.isDrilldownChart && !this.isHeaderVisible) {
3837
3838
  height =
3838
3839
  parseInt(verticalstackedcontainer.style('height')) -
3839
3840
  margin.top -
3840
3841
  margin.bottom -
3841
3842
  130;
3842
3843
  }
3844
+ if (this.chartConfiguration.isHeaderVisible) {
3845
+ height =
3846
+ parseInt(verticalstackedcontainer.style('height')) -
3847
+ margin.top -
3848
+ margin.bottom -
3849
+ 100;
3850
+ }
3843
3851
  /**
3844
3852
  * for hiding header
3845
3853
  * used by weekly charts
@@ -4583,6 +4591,7 @@ class GroupChartComponent extends ComponentUniqueId {
4583
4591
  .call(y)
4584
4592
  .style('display', 'none');
4585
4593
  svgYAxisLeft
4594
+ .append('g')
4586
4595
  .append('g')
4587
4596
  .attr('class', 'lib-yaxis-labels-texts-drilldown yaxis-dashed')
4588
4597
  .attr('style', self.chartConfiguration.yAxisCustomTextStyles)