@carbon/charts-vue 0.54.7 → 0.54.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/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.54.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.7...v0.54.8) (2022-01-25)
7
+
8
+ **Note:** Version bump only for package @carbon/charts-vue
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.54.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.6...v0.54.7) (2022-01-13)
7
15
 
8
16
  **Note:** Version bump only for package @carbon/charts-vue
@@ -16160,10 +16160,11 @@ var scales_cartesian_CartesianScales = /** @class */ (function (_super) {
16160
16160
  };
16161
16161
  CartesianScales.prototype.getBoundedScaledValues = function (datum, index) {
16162
16162
  var bounds = this.model.getOptions().bounds;
16163
- var scale = this.scales[this.rangeAxisPosition];
16163
+ var axisPosition = this.getRangeAxisPosition({ datum: datum });
16164
+ var scale = this.scales[axisPosition];
16164
16165
  var options = this.model.getOptions();
16165
16166
  var axesOptions = tools_Tools.getProperty(options, 'axes');
16166
- var axisOptions = axesOptions[this.rangeAxisPosition];
16167
+ var axisOptions = axesOptions[axisPosition];
16167
16168
  var mapsTo = axisOptions.mapsTo;
16168
16169
  var value = datum[mapsTo] !== undefined ? datum[mapsTo] : datum;
16169
16170
  var boundedValues = [