@bizy/core 21.5.7 → 21.5.8
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/fesm2022/bizy-core.mjs +5 -13
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2022/bizy-core.mjs
CHANGED
|
@@ -10400,9 +10400,7 @@ class BizyBarLineChartComponent {
|
|
|
10400
10400
|
axisIndex = _axisIndex;
|
|
10401
10401
|
}
|
|
10402
10402
|
else {
|
|
10403
|
-
|
|
10404
|
-
this.#chartGroups.set(lineYAxis.group, index);
|
|
10405
|
-
axisIndex = index;
|
|
10403
|
+
this.#chartGroups.set(lineYAxis.group, axisIndex);
|
|
10406
10404
|
}
|
|
10407
10405
|
}
|
|
10408
10406
|
yAxis.push({
|
|
@@ -10458,9 +10456,7 @@ class BizyBarLineChartComponent {
|
|
|
10458
10456
|
axisIndex = _axisIndex;
|
|
10459
10457
|
}
|
|
10460
10458
|
else {
|
|
10461
|
-
|
|
10462
|
-
this.#chartGroups.set(lineXAxis.group, index);
|
|
10463
|
-
axisIndex = index;
|
|
10459
|
+
this.#chartGroups.set(lineXAxis.group, axisIndex);
|
|
10464
10460
|
}
|
|
10465
10461
|
}
|
|
10466
10462
|
xAxis.push({
|
|
@@ -10551,9 +10547,7 @@ class BizyBarLineChartComponent {
|
|
|
10551
10547
|
axisIndex = _axisIndex;
|
|
10552
10548
|
}
|
|
10553
10549
|
else {
|
|
10554
|
-
|
|
10555
|
-
this.#chartGroups.set(barYAxis.group, index);
|
|
10556
|
-
axisIndex = index;
|
|
10550
|
+
this.#chartGroups.set(barYAxis.group, axisIndex);
|
|
10557
10551
|
}
|
|
10558
10552
|
}
|
|
10559
10553
|
yAxis.push({
|
|
@@ -10610,9 +10604,7 @@ class BizyBarLineChartComponent {
|
|
|
10610
10604
|
axisIndex = _axisIndex;
|
|
10611
10605
|
}
|
|
10612
10606
|
else {
|
|
10613
|
-
|
|
10614
|
-
this.#chartGroups.set(barXAxis.group, index);
|
|
10615
|
-
axisIndex = index;
|
|
10607
|
+
this.#chartGroups.set(barXAxis.group, axisIndex);
|
|
10616
10608
|
}
|
|
10617
10609
|
}
|
|
10618
10610
|
xAxis.push({
|
|
@@ -10654,7 +10646,7 @@ class BizyBarLineChartComponent {
|
|
|
10654
10646
|
}
|
|
10655
10647
|
}
|
|
10656
10648
|
}
|
|
10657
|
-
if (axisIndex !== _i + this.lineCharts.length) {
|
|
10649
|
+
if (axisIndex !== (_i + this.lineCharts.length)) {
|
|
10658
10650
|
if (_bar.stack) {
|
|
10659
10651
|
const _stack = this.#chartStacks.find(_stack => _stack === _bar.stack);
|
|
10660
10652
|
if (_stack) {
|