@esfaenza/es-charts 11.2.27 → 11.2.28

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.
@@ -1595,7 +1595,7 @@
1595
1595
  yAxis.min = settings.Min;
1596
1596
  if (settings.Max)
1597
1597
  yAxis.max = settings.Max;
1598
- var limitNullOrUndef = dataConverted.limit != null && dataConverted.limit != undefined;
1598
+ var limitNullOrUndef = dataConverted.limit == null || dataConverted.limit == undefined;
1599
1599
  var limits = limitNullOrUndef ? [] : !dataConverted.limit.length ? [dataConverted.limit] : dataConverted.limit;
1600
1600
  if (limits.length > 0) {
1601
1601
  for (var i = 0; i < limits.length; i++) {