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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evui",
3
- "version": "3.4.111",
3
+ "version": "3.4.113",
4
4
  "description": "A EXEM Library project",
5
5
  "author": "exem <dev_client@ex-em.com>",
6
6
  "license": "MIT",
@@ -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) {