{"version":3,"file":"createClipPathFromCoordSys-DFo0nTAy.js","sources":["../../../node_modules/echarts/lib/chart/helper/labelHelper.js","../../../node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js"],"sourcesContent":["\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements. See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership. The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License. You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied. See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar _dataProvider = require(\"../../data/helper/dataProvider\");\n\nvar retrieveRawValue = _dataProvider.retrieveRawValue;\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements. See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership. The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License. You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied. See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * @param {module:echarts/data/List} data\n * @param {number} dataIndex\n * @return {string} label string. Not null/undefined\n */\nfunction getDefaultLabel(data, dataIndex) {\n var labelDims = data.mapDimension('defaultedLabel', true);\n var len = labelDims.length; // Simple optimization (in lots of cases, label dims length is 1)\n\n if (len === 1) {\n return retrieveRawValue(data, dataIndex, labelDims[0]);\n } else if (len) {\n var vals = [];\n\n for (var i = 0; i < labelDims.length; i++) {\n var val = retrieveRawValue(data, dataIndex, labelDims[i]);\n vals.push(val);\n }\n\n return vals.join(' ');\n }\n}\n\nexports.getDefaultLabel = getDefaultLabel;","\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements. See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership. The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License. You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied. See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\nvar graphic = require(\"../../util/graphic\");\n\nvar _number = require(\"../../util/number\");\n\nvar round = _number.round;\n\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements. See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership. The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License. You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied. See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\nfunction createGridClipPath(cartesian, hasAnimation, seriesModel) {\n var rect = cartesian.getArea();\n var isHorizontal = cartesian.getBaseAxis().isHorizontal();\n var x = rect.x;\n var y = rect.y;\n var width = rect.width;\n var height = rect.height;\n var lineWidth = seriesModel.get('lineStyle.width') || 2; // Expand the clip path a bit to avoid the border is clipped and looks thinner\n\n x -= lineWidth / 2;\n y -= lineWidth / 2;\n width += lineWidth;\n height += lineWidth; // fix: https://github.com/apache/incubator-echarts/issues/11369\n\n x = Math.floor(x);\n width = Math.round(width);\n var clipPath = new graphic.Rect({\n shape: {\n x: x,\n y: y,\n width: width,\n height: height\n }\n });\n\n if (hasAnimation) {\n clipPath.shape[isHorizontal ? 'width' : 'height'] = 0;\n graphic.initProps(clipPath, {\n shape: {\n width: width,\n height: height\n }\n }, seriesModel);\n }\n\n return clipPath;\n}\n\nfunction createPolarClipPath(polar, hasAnimation, seriesModel) {\n var sectorArea = polar.getArea(); // Avoid float number rounding error for symbol on the edge of axis extent.\n\n var clipPath = new graphic.Sector({\n shape: {\n cx: round(polar.cx, 1),\n cy: round(polar.cy, 1),\n r0: round(sectorArea.r0, 1),\n r: round(sectorArea.r, 1),\n startAngle: sectorArea.startAngle,\n endAngle: sectorArea.endAngle,\n clockwise: sectorArea.clockwise\n }\n });\n\n if (hasAnimation) {\n clipPath.shape.endAngle = sectorArea.startAngle;\n graphic.initProps(clipPath, {\n shape: {\n endAngle: sectorArea.endAngle\n }\n }, seriesModel);\n }\n\n return clipPath;\n}\n\nfunction createClipPath(coordSys, hasAnimation, seriesModel) {\n if (!coordSys) {\n return null;\n } else if (coordSys.type === 'polar') {\n return createPolarClipPath(coordSys, hasAnimation, seriesModel);\n } else if (coordSys.type === 'cartesian2d') {\n return createGridClipPath(coordSys, hasAnimation, seriesModel);\n }\n\n return null;\n}\n\nexports.createGridClipPath = createGridClipPath;\nexports.createPolarClipPath = createPolarClipPath;\nexports.createClipPath = createClipPath;"],"names":["_dataProvider","require$$0","retrieveRawValue","getDefaultLabel","data","dataIndex","labelDims","len","vals","i","val","labelHelper","graphic","_number","require$$1","round","createGridClipPath","cartesian","hasAnimation","seriesModel","rect","isHorizontal","x","y","width","height","lineWidth","clipPath","createPolarClipPath","polar","sectorArea","createClipPath","coordSys","createClipPathFromCoordSys"],"mappings":"kEAoBIA,EAAgBC,EAEhBC,EAAmBF,EAAc,iBA0BrC,SAASG,EAAgBC,EAAMC,EAAW,CACxC,IAAIC,EAAYF,EAAK,aAAa,iBAAkB,EAAI,EACpDG,EAAMD,EAAU,OAEpB,GAAIC,IAAQ,EACV,OAAOL,EAAiBE,EAAMC,EAAWC,EAAU,CAAC,CAAC,EAChD,GAAIC,EAAK,CAGd,QAFIC,EAAO,CAAE,EAEJC,EAAI,EAAGA,EAAIH,EAAU,OAAQG,IAAK,CACzC,IAAIC,EAAMR,EAAiBE,EAAMC,EAAWC,EAAUG,CAAC,CAAC,EACxDD,EAAK,KAAKE,CAAG,CACnB,CAEI,OAAOF,EAAK,KAAK,GAAG,CACxB,CACA,CAEAG,EAAA,gBAA0BR,WC9CtBS,EAAUX,EAEVY,EAAUC,EAEVC,EAAQF,EAAQ,MAoBpB,SAASG,EAAmBC,EAAWC,EAAcC,EAAa,CAChE,IAAIC,EAAOH,EAAU,QAAS,EAC1BI,EAAeJ,EAAU,YAAW,EAAG,aAAc,EACrDK,EAAIF,EAAK,EACTG,EAAIH,EAAK,EACTI,EAAQJ,EAAK,MACbK,EAASL,EAAK,OACdM,EAAYP,EAAY,IAAI,iBAAiB,GAAK,EAEtDG,GAAKI,EAAY,EACjBH,GAAKG,EAAY,EACjBF,GAASE,EACTD,GAAUC,EAEVJ,EAAI,KAAK,MAAMA,CAAC,EAChBE,EAAQ,KAAK,MAAMA,CAAK,EACxB,IAAIG,EAAW,IAAIf,EAAQ,KAAK,CAC9B,MAAO,CACL,EAAGU,EACH,EAAGC,EACH,MAAOC,EACP,OAAQC,CACd,CACA,CAAG,EAED,OAAIP,IACFS,EAAS,MAAMN,EAAe,QAAU,QAAQ,EAAI,EACpDT,EAAQ,UAAUe,EAAU,CAC1B,MAAO,CACL,MAAOH,EACP,OAAQC,CAChB,CACK,EAAEN,CAAW,GAGTQ,CACT,CAEA,SAASC,EAAoBC,EAAOX,EAAcC,EAAa,CAC7D,IAAIW,EAAaD,EAAM,UAEnBF,EAAW,IAAIf,EAAQ,OAAO,CAChC,MAAO,CACL,GAAIG,EAAMc,EAAM,GAAI,CAAC,EACrB,GAAId,EAAMc,EAAM,GAAI,CAAC,EACrB,GAAId,EAAMe,EAAW,GAAI,CAAC,EAC1B,EAAGf,EAAMe,EAAW,EAAG,CAAC,EACxB,WAAYA,EAAW,WACvB,SAAUA,EAAW,SACrB,UAAWA,EAAW,SAC5B,CACA,CAAG,EAED,OAAIZ,IACFS,EAAS,MAAM,SAAWG,EAAW,WACrClB,EAAQ,UAAUe,EAAU,CAC1B,MAAO,CACL,SAAUG,EAAW,QAC7B,CACK,EAAEX,CAAW,GAGTQ,CACT,CAEA,SAASI,EAAeC,EAAUd,EAAcC,EAAa,CAC3D,GAAKa,EAEE,IAAIA,EAAS,OAAS,QAC3B,OAAOJ,EAAoBI,EAAUd,EAAcC,CAAW,EACzD,GAAIa,EAAS,OAAS,cAC3B,OAAOhB,EAAmBgB,EAAUd,EAAcC,CAAW,MAJ7D,QAAO,KAOT,OAAO,IACT,CAE0Bc,EAAA,mBAAGjB,EACFiB,EAAA,oBAAGL,EAC9BK,EAAA,eAAyBF","x_google_ignoreList":[0,1]}