@carbon/charts-vue 0.41.79 → 0.41.80

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.41.80](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.79...v0.41.80) (2021-07-07)
7
+
8
+ **Note:** Version bump only for package @carbon/charts-vue
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.41.79](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.78...v0.41.79) (2021-06-29)
7
15
 
8
16
  **Note:** Version bump only for package @carbon/charts-vue
@@ -29434,9 +29434,10 @@ var radar_Radar = /** @class */ (function (_super) {
29434
29434
  var xScale = band()
29435
29435
  .domain(this.fullDataNormalized.map(function (d) { return d[angle]; }))
29436
29436
  .range([0, 2 * Math.PI].map(function (a) { return a - Math.PI / 2; }));
29437
+ var centerPointMinValue = src_min(this.fullDataNormalized.map(function (d) { return d[value]; }));
29437
29438
  var yScale = linear_linear()
29438
29439
  .domain([
29439
- 0,
29440
+ centerPointMinValue >= 0 ? 0 : centerPointMinValue,
29440
29441
  src_max(this.fullDataNormalized.map(function (d) { return d[value]; })),
29441
29442
  ])
29442
29443
  .range([minRange, radius])