Skip to content

Commit

Permalink
fix(lineRange): use disableTooltip apache/echarts#20447
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovilia committed Oct 24, 2024
1 parent 3ecbed3 commit b25e40f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom-series/lineRange/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const renderItem = (
shadowOffsetX: areaStyle.shadowOffsetX,
shadowOffsetY: areaStyle.shadowOffsetY,
},
silent: true,
disableTooltip: true,
} as Polygon);
}

Expand All @@ -128,15 +128,15 @@ const renderItem = (
pathData: pathDataStart,
},
style: polylineStyle,
silent: true,
disableTooltip: true,
} as Polyline);
group.children.push({
type: 'path',
shape: {
pathData: pathDataEnd,
},
style: polylineStyle,
silent: true,
disableTooltip: true,
} as Polyline);
}
return group;
Expand Down

0 comments on commit b25e40f

Please sign in to comment.