evui 3.4.206 → 3.4.207
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/evui.common.js +6 -3
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +6 -3
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/chart/plugins/plugins.interaction.js +6 -2
package/dist/evui.common.js
CHANGED
|
@@ -11191,7 +11191,7 @@ $({ target: 'Number', stat: true }, {
|
|
|
11191
11191
|
/***/ "9224":
|
|
11192
11192
|
/***/ (function(module) {
|
|
11193
11193
|
|
|
11194
|
-
module.exports = JSON.parse("{\"a\":\"3.4.
|
|
11194
|
+
module.exports = JSON.parse("{\"a\":\"3.4.207\"}");
|
|
11195
11195
|
|
|
11196
11196
|
/***/ }),
|
|
11197
11197
|
|
|
@@ -51470,7 +51470,7 @@ var plugins_interaction_modules = {
|
|
|
51470
51470
|
} // tooltip 기반 indicator가 아직 설정되지 않은 경우에만 일반 indicator 처리
|
|
51471
51471
|
|
|
51472
51472
|
|
|
51473
|
-
if (!args.hoveredLabel &&
|
|
51473
|
+
if (!args.hoveredLabel && !_this.isNotUseIndicator()) {
|
|
51474
51474
|
// line 차트가 아니고 line series가 없거나, tooltip이 없을 때는 일반 indicator 표시
|
|
51475
51475
|
var _hasLineSeries = Object.values(_this.seriesList || {}).some(function (series) {
|
|
51476
51476
|
return series.type === 'line';
|
|
@@ -52367,7 +52367,7 @@ var plugins_interaction_modules = {
|
|
|
52367
52367
|
|
|
52368
52368
|
var targetDataIndex = this.findClosestDataIndex(offset, sIds);
|
|
52369
52369
|
|
|
52370
|
-
if (targetDataIndex === -1 && this.
|
|
52370
|
+
if (targetDataIndex === -1 && !this.isNotUseIndicator()) {
|
|
52371
52371
|
return {
|
|
52372
52372
|
items: items,
|
|
52373
52373
|
hitId: hitId,
|
|
@@ -53164,6 +53164,9 @@ var plugins_interaction_modules = {
|
|
|
53164
53164
|
|
|
53165
53165
|
return 'canvas';
|
|
53166
53166
|
},
|
|
53167
|
+
isNotUseIndicator: function isNotUseIndicator() {
|
|
53168
|
+
return this.options.type === 'pie' || this.options.type === 'scatter' || this.options.type === 'heatMap';
|
|
53169
|
+
},
|
|
53167
53170
|
|
|
53168
53171
|
/**
|
|
53169
53172
|
* Clear 'defaultSelectInfo'
|