@progress/kendo-charts 1.26.1-dev.202210201157 → 1.26.1-dev.202210260755
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/es/chart/chart.js
CHANGED
|
@@ -1291,7 +1291,7 @@ var Chart = (function (Class) {
|
|
|
1291
1291
|
|
|
1292
1292
|
if (plotArea.hover) {
|
|
1293
1293
|
var overPlotArea = plotArea.backgroundContainsPoint(coords);
|
|
1294
|
-
if (overPlotArea
|
|
1294
|
+
if (overPlotArea) {
|
|
1295
1295
|
this._plotAreaHovered = true;
|
|
1296
1296
|
this._plotArea.hover(this, e);
|
|
1297
1297
|
} else if (this._plotAreaHovered && !overPlotArea) {
|
|
@@ -1258,7 +1258,7 @@ class Chart extends Class {
|
|
|
1258
1258
|
|
|
1259
1259
|
if (plotArea.hover) {
|
|
1260
1260
|
const overPlotArea = plotArea.backgroundContainsPoint(coords);
|
|
1261
|
-
if (overPlotArea
|
|
1261
|
+
if (overPlotArea) {
|
|
1262
1262
|
this._plotAreaHovered = true;
|
|
1263
1263
|
this._plotArea.hover(this, e);
|
|
1264
1264
|
} else if (this._plotAreaHovered && !overPlotArea) {
|