axidio-styleguide-library1-v2 0.0.850 → 0.0.851

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.
@@ -8512,7 +8512,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8512
8512
  var verticalstackedcontainer = d3.select(this.groupcontainerElt.nativeElement);
8513
8513
  var margin = this.chartConfiguration.margin;
8514
8514
  var width = parseInt(chartContainer.style('width')) - margin.left - margin.right;
8515
- if (this.chartData.data.length > 30 && this.isZoomedOut) {
8515
+ if (this.chartData.data.length > 30 && !this.isZoomedOut) {
8516
8516
  width =
8517
8517
  width > this.chartData.data.length * 40
8518
8518
  ? this.chartData.dropdownData1
@@ -8528,10 +8528,10 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8528
8528
  }
8529
8529
  if (this.chartData.dropdownData2 &&
8530
8530
  width < this.chartData.data.length * 120 &&
8531
- this.isZoomedOut) {
8531
+ !this.isZoomedOut) {
8532
8532
  width = this.chartData.data.length * 120;
8533
8533
  }
8534
- if (this.chartData.data.length > 8 && !this.isZoomedOut) {
8534
+ if (this.chartData.data.length > 8 && this.isZoomedOut) {
8535
8535
  if (this.chartData.dropdownData2 &&
8536
8536
  width < this.chartData.data.length * 250) {
8537
8537
  width = this.chartData.data.length * 250;