evui 3.4.111 → 3.4.113
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 +4 -4
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +4 -4
- 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/element/element.bar.js +2 -2
- package/src/components/chart/element/element.line.js +1 -1
package/package.json
CHANGED
|
@@ -337,7 +337,7 @@ class Bar {
|
|
|
337
337
|
|
|
338
338
|
if ((sx <= xp) && (xp <= ex)) {
|
|
339
339
|
item.data = gdata[m];
|
|
340
|
-
item.index = m;
|
|
340
|
+
item.index = gdata[m].index; // 원본 데이터 인덱스 사용
|
|
341
341
|
|
|
342
342
|
if ((ey <= yp) && (yp <= sy)) {
|
|
343
343
|
item.hit = true;
|
|
@@ -379,7 +379,7 @@ class Bar {
|
|
|
379
379
|
|
|
380
380
|
if ((ey <= yp) && (yp <= sy)) {
|
|
381
381
|
item.data = gdata[m];
|
|
382
|
-
item.index = m;
|
|
382
|
+
item.index = gdata[m].index; // 원본 데이터 인덱스 사용
|
|
383
383
|
|
|
384
384
|
if ((sx <= xp) && (xp <= ex)) {
|
|
385
385
|
item.hit = true;
|
|
@@ -263,7 +263,7 @@ class Line {
|
|
|
263
263
|
return;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
-
const isSingle = Util.isNullOrUndefined(this.data[ix - 1]?.o)
|
|
266
|
+
const isSingle = this.interpolation === 'none' && Util.isNullOrUndefined(this.data[ix - 1]?.o)
|
|
267
267
|
&& Util.isNullOrUndefined(this.data[ix + 1]?.o);
|
|
268
268
|
const isSelectedLabel = selectedLabelIndexList.includes(ix);
|
|
269
269
|
if (this.point || isSingle || isSelectedLabel) {
|