(coordSys, hasAnimation, seriesModel)
| 34743 | } |
| 34744 | |
| 34745 | function createClipPath(coordSys, hasAnimation, seriesModel) { |
| 34746 | if (!coordSys) { |
| 34747 | return null; |
| 34748 | } |
| 34749 | else if (coordSys.type === 'polar') { |
| 34750 | return createPolarClipPath(coordSys, hasAnimation, seriesModel); |
| 34751 | } |
| 34752 | else if (coordSys.type === 'cartesian2d') { |
| 34753 | return createGridClipPath(coordSys, hasAnimation, seriesModel); |
| 34754 | } |
| 34755 | return null; |
| 34756 | } |
| 34757 | |
| 34758 | /* |
| 34759 | * Licensed to the Apache Software Foundation (ASF) under one |
no test coverage detected