This is an automated email from the ASF dual-hosted git repository.
ovilia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/echarts-custom-series.git
The following commit(s) were added to refs/heads/main by this push:
new b25e40f fix(lineRange): use disableTooltip apache/echarts#20447
b25e40f is described below
commit b25e40f7315a507bca04d1e96200317c04c68ee3
Author: Ovilia <[email protected]>
AuthorDate: Thu Oct 24 15:44:49 2024 +0800
fix(lineRange): use disableTooltip apache/echarts#20447
---
custom-series/lineRange/src/index.ts | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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 @@ const renderItem = (
shadowOffsetX: areaStyle.shadowOffsetX,
shadowOffsetY: areaStyle.shadowOffsetY,
},
- silent: true,
+ disableTooltip: true,
} as Polygon);
}
@@ -128,7 +128,7 @@ const renderItem = (
pathData: pathDataStart,
},
style: polylineStyle,
- silent: true,
+ disableTooltip: true,
} as Polyline);
group.children.push({
type: 'path',
@@ -136,7 +136,7 @@ const renderItem = (
pathData: pathDataEnd,
},
style: polylineStyle,
- silent: true,
+ disableTooltip: true,
} as Polyline);
}
return group;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]