axidio-styleguide-library1-v2 0.0.849 → 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.
- package/esm2022/lib/group-chart/group-chart.component.mjs +2 -2
- package/esm2022/lib/horizontal-bars-with-scroll-zoom/horizontal-bars-with-scroll-zoom.component.mjs +2 -2
- package/esm2022/lib/horizontal-grouped-bar-with-scroll-zoom/horizontal-grouped-bar-with-scroll-zoom.component.mjs +4 -4
- package/fesm2022/axidio-styleguide-library1-v2.mjs +5 -5
- package/fesm2022/axidio-styleguide-library1-v2.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3717,7 +3717,7 @@ class GroupChartComponent extends ComponentUniqueId {
|
|
|
3717
3717
|
barVauleColor: undefined,
|
|
3718
3718
|
};
|
|
3719
3719
|
this.uniqueId = this.getUniqueId();
|
|
3720
|
-
this.isZoomedOut =
|
|
3720
|
+
this.isZoomedOut = false;
|
|
3721
3721
|
this.isDD1Open = false;
|
|
3722
3722
|
this.isDD2Open = false;
|
|
3723
3723
|
this.keepOrder = (a, b) => {
|
|
@@ -7161,7 +7161,7 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7161
7161
|
isTitleHidden: undefined,
|
|
7162
7162
|
};
|
|
7163
7163
|
this.isCC = false;
|
|
7164
|
-
this.isZoomedOut =
|
|
7164
|
+
this.isZoomedOut = false;
|
|
7165
7165
|
}
|
|
7166
7166
|
isZoomOutSelected(isZoomOut) {
|
|
7167
7167
|
this.isZoomedOut = isZoomOut;
|
|
@@ -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 &&
|
|
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;
|