@bizy/core 21.5.6 → 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
CHANGED
|
@@ -10400,7 +10400,7 @@ class BizyBarLineChartComponent {
|
|
|
10400
10400
|
axisIndex = _axisIndex;
|
|
10401
10401
|
}
|
|
10402
10402
|
else {
|
|
10403
|
-
this.#chartGroups.set(lineYAxis.group,
|
|
10403
|
+
this.#chartGroups.set(lineYAxis.group, axisIndex);
|
|
10404
10404
|
}
|
|
10405
10405
|
}
|
|
10406
10406
|
yAxis.push({
|
|
@@ -10456,7 +10456,7 @@ class BizyBarLineChartComponent {
|
|
|
10456
10456
|
axisIndex = _axisIndex;
|
|
10457
10457
|
}
|
|
10458
10458
|
else {
|
|
10459
|
-
this.#chartGroups.set(lineXAxis.group,
|
|
10459
|
+
this.#chartGroups.set(lineXAxis.group, axisIndex);
|
|
10460
10460
|
}
|
|
10461
10461
|
}
|
|
10462
10462
|
xAxis.push({
|
|
@@ -10547,7 +10547,7 @@ class BizyBarLineChartComponent {
|
|
|
10547
10547
|
axisIndex = _axisIndex;
|
|
10548
10548
|
}
|
|
10549
10549
|
else {
|
|
10550
|
-
this.#chartGroups.set(barYAxis.group,
|
|
10550
|
+
this.#chartGroups.set(barYAxis.group, axisIndex);
|
|
10551
10551
|
}
|
|
10552
10552
|
}
|
|
10553
10553
|
yAxis.push({
|
|
@@ -10604,7 +10604,7 @@ class BizyBarLineChartComponent {
|
|
|
10604
10604
|
axisIndex = _axisIndex;
|
|
10605
10605
|
}
|
|
10606
10606
|
else {
|
|
10607
|
-
this.#chartGroups.set(barXAxis.group,
|
|
10607
|
+
this.#chartGroups.set(barXAxis.group, axisIndex);
|
|
10608
10608
|
}
|
|
10609
10609
|
}
|
|
10610
10610
|
xAxis.push({
|
|
@@ -10646,7 +10646,7 @@ class BizyBarLineChartComponent {
|
|
|
10646
10646
|
}
|
|
10647
10647
|
}
|
|
10648
10648
|
}
|
|
10649
|
-
if (axisIndex !== _i + this.lineCharts.length) {
|
|
10649
|
+
if (axisIndex !== (_i + this.lineCharts.length)) {
|
|
10650
10650
|
if (_bar.stack) {
|
|
10651
10651
|
const _stack = this.#chartStacks.find(_stack => _stack === _bar.stack);
|
|
10652
10652
|
if (_stack) {
|