fix(lineRange): use disableTooltip apache/echarts#20447
diff --git a/custom-series/lineRange/src/index.ts b/custom-series/lineRange/src/index.ts
index ab9eae0..65ebbba 100644
--- a/custom-series/lineRange/src/index.ts
+++ b/custom-series/lineRange/src/index.ts
@@ -102,7 +102,7 @@
shadowOffsetX: areaStyle.shadowOffsetX,
shadowOffsetY: areaStyle.shadowOffsetY,
},
- silent: true,
+ disableTooltip: true,
} as Polygon);
}
@@ -128,7 +128,7 @@
pathData: pathDataStart,
},
style: polylineStyle,
- silent: true,
+ disableTooltip: true,
} as Polyline);
group.children.push({
type: 'path',
@@ -136,7 +136,7 @@
pathData: pathDataEnd,
},
style: polylineStyle,
- silent: true,
+ disableTooltip: true,
} as Polyline);
}
return group;