@carbon/charts-react 1.13.10 → 1.13.12

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/dist/index.mjs CHANGED
@@ -10668,12 +10668,12 @@ let or = class extends Je {
10668
10668
  }), n;
10669
10669
  }
10670
10670
  getTabularDataArray() {
10671
- const t = this.getDisplayData(), n = this.getOptions(), { groupMapsTo: r } = n.data;
10671
+ const t = this.getDisplayData(), n = this.getOptions(), { groupMapsTo: r } = n.data, { valueMapsTo: i } = n.pie;
10672
10672
  return [
10673
10673
  ["Group", "Value"],
10674
- ...t.map((i) => [
10675
- i[r],
10676
- i.value === null ? "–" : i.value.toLocaleString()
10674
+ ...t.map((s) => [
10675
+ s[r],
10676
+ s[i] === null ? "–" : s[i].toLocaleString()
10677
10677
  ])
10678
10678
  ];
10679
10679
  }