axidio-styleguide-library1-v2 0.1.82 → 0.1.84
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.
|
@@ -8319,10 +8319,10 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8319
8319
|
if (this.chartData.data.length > 8 && !this.isZoomedOut) {
|
|
8320
8320
|
if (this.chartData.dropdownData2 &&
|
|
8321
8321
|
width < this.chartData.data.length * 250) {
|
|
8322
|
-
width = this.chartData.data.length *
|
|
8322
|
+
width = this.chartData.data.length * 550;
|
|
8323
8323
|
}
|
|
8324
8324
|
else
|
|
8325
|
-
width = this.chartData.data.length *
|
|
8325
|
+
width = this.chartData.data.length * 220;
|
|
8326
8326
|
}
|
|
8327
8327
|
// if (this.chartData.data.length > 8) {
|
|
8328
8328
|
// width = this.chartData.data.length * 140;
|
|
@@ -8952,8 +8952,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8952
8952
|
// Increase bar width a bit in zoom-in view
|
|
8953
8953
|
let reducedBarWidth = 60;
|
|
8954
8954
|
if (!self.isZoomedOut) {
|
|
8955
|
-
|
|
8956
|
-
let reducedBarWidth = Math.min(x.bandwidth() * 0.8, 200);
|
|
8955
|
+
reducedBarWidth = 100;
|
|
8957
8956
|
}
|
|
8958
8957
|
if (self.chartData.data.length == 1) {
|
|
8959
8958
|
if (Object.keys(self.chartData.data[0]).length == 2) {
|