diff --git a/src/chart/sunburst/SunburstPiece.ts b/src/chart/sunburst/SunburstPiece.ts index f4e1598dc1..f937b59ab9 100644 --- a/src/chart/sunburst/SunburstPiece.ts +++ b/src/chart/sunburst/SunburstPiece.ts @@ -253,7 +253,7 @@ class SunburstPiece extends graphic.Sector { let rotate = 0; if (rotateType === 'radial') { rotate = normalizeRadian(-midAngle); - if (((rotate > Math.PI / 2 && rotate <= Math.PI * 1.5))) { + if (((rotate > Math.PI / 2 && rotate < Math.PI * 1.5))) { rotate += Math.PI; } }