@progress/kendo-charts 1.23.0-dev.202201170838 → 1.23.0-dev.202202081459

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.
@@ -240,7 +240,8 @@ var NumericAxis = (function (Axis) {
240
240
 
241
241
  return {
242
242
  min: limitValue(range.min, totalMin, totalMax),
243
- max: limitValue(range.max, totalMin, totalMax)
243
+ max: limitValue(range.max, totalMin, totalMax),
244
+ narrowRange: false
244
245
  };
245
246
  };
246
247
 
@@ -220,7 +220,8 @@ class NumericAxis extends Axis {
220
220
 
221
221
  return {
222
222
  min: limitValue(range.min, totalMin, totalMax),
223
- max: limitValue(range.max, totalMin, totalMax)
223
+ max: limitValue(range.max, totalMin, totalMax),
224
+ narrowRange: false
224
225
  };
225
226
  }
226
227