@bizy/core 21.5.6 → 21.5.7
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 +12 -4
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2022/bizy-core.mjs
CHANGED
|
@@ -10400,7 +10400,9 @@ class BizyBarLineChartComponent {
|
|
|
10400
10400
|
axisIndex = _axisIndex;
|
|
10401
10401
|
}
|
|
10402
10402
|
else {
|
|
10403
|
-
|
|
10403
|
+
const index = this.#getRandomFourDigitsNumber();
|
|
10404
|
+
this.#chartGroups.set(lineYAxis.group, index);
|
|
10405
|
+
axisIndex = index;
|
|
10404
10406
|
}
|
|
10405
10407
|
}
|
|
10406
10408
|
yAxis.push({
|
|
@@ -10456,7 +10458,9 @@ class BizyBarLineChartComponent {
|
|
|
10456
10458
|
axisIndex = _axisIndex;
|
|
10457
10459
|
}
|
|
10458
10460
|
else {
|
|
10459
|
-
|
|
10461
|
+
const index = this.#getRandomFourDigitsNumber();
|
|
10462
|
+
this.#chartGroups.set(lineXAxis.group, index);
|
|
10463
|
+
axisIndex = index;
|
|
10460
10464
|
}
|
|
10461
10465
|
}
|
|
10462
10466
|
xAxis.push({
|
|
@@ -10547,7 +10551,9 @@ class BizyBarLineChartComponent {
|
|
|
10547
10551
|
axisIndex = _axisIndex;
|
|
10548
10552
|
}
|
|
10549
10553
|
else {
|
|
10550
|
-
|
|
10554
|
+
const index = this.#getRandomFourDigitsNumber();
|
|
10555
|
+
this.#chartGroups.set(barYAxis.group, index);
|
|
10556
|
+
axisIndex = index;
|
|
10551
10557
|
}
|
|
10552
10558
|
}
|
|
10553
10559
|
yAxis.push({
|
|
@@ -10604,7 +10610,9 @@ class BizyBarLineChartComponent {
|
|
|
10604
10610
|
axisIndex = _axisIndex;
|
|
10605
10611
|
}
|
|
10606
10612
|
else {
|
|
10607
|
-
|
|
10613
|
+
const index = this.#getRandomFourDigitsNumber();
|
|
10614
|
+
this.#chartGroups.set(barXAxis.group, index);
|
|
10615
|
+
axisIndex = index;
|
|
10608
10616
|
}
|
|
10609
10617
|
}
|
|
10610
10618
|
xAxis.push({
|