@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.
@@ -10400,7 +10400,9 @@ class BizyBarLineChartComponent {
10400
10400
  axisIndex = _axisIndex;
10401
10401
  }
10402
10402
  else {
10403
- this.#chartGroups.set(lineYAxis.group, this.#getRandomFourDigitsNumber());
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
- this.#chartGroups.set(lineXAxis.group, this.#getRandomFourDigitsNumber());
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
- this.#chartGroups.set(barYAxis.group, this.#getRandomFourDigitsNumber());
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
- this.#chartGroups.set(barXAxis.group, this.#getRandomFourDigitsNumber());
10613
+ const index = this.#getRandomFourDigitsNumber();
10614
+ this.#chartGroups.set(barXAxis.group, index);
10615
+ axisIndex = index;
10608
10616
  }
10609
10617
  }
10610
10618
  xAxis.push({