This is an automated email from the ASF dual-hosted git repository. shenyi pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git
commit 0d12f10360e2ce7e1c90b0dc2a764ea9c5cf5899 Author: hantianjiao <[email protected]> AuthorDate: Sun Nov 3 22:28:02 2019 +0800 fix(line): overflow symbols should render if clip is false #11549 --- src/chart/line/LineView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chart/line/LineView.js b/src/chart/line/LineView.js index 8613fe8..6ed1a63 100644 --- a/src/chart/line/LineView.js +++ b/src/chart/line/LineView.js @@ -354,7 +354,7 @@ export default ChartView.extend({ // FIXME step not support polar var step = !isCoordSysPolar && seriesModel.get('step'); var clipShapeForSymbol; - if (coordSys && coordSys.getArea) { + if (coordSys && coordSys.getArea && seriesModel.get('clip')) { clipShapeForSymbol = coordSys.getArea(); // Avoid float number rounding error for symbol on the edge of axis extent. // See #7913 and `test/dataZoom-clip.html`. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
