{"version":3,"file":"bar-CDNKJDS-.js","sources":["../../../node_modules/echarts/lib/chart/bar/BaseBarSeries.js","../../../node_modules/echarts/lib/chart/bar/BarSeries.js","../../../node_modules/echarts/lib/chart/bar/helper.js","../../../node_modules/echarts/lib/chart/bar/barItemStyle.js","../../../node_modules/echarts/lib/util/shape/sausage.js","../../../node_modules/echarts/lib/chart/bar/BarView.js","../../../node_modules/echarts/lib/chart/bar.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 SeriesModel = require(\"../../model/Series\");\n\nvar createListFromArray = require(\"../helper/createListFromArray\");\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*/\nvar _default = SeriesModel.extend({\n type: 'series.__base_bar__',\n getInitialData: function (option, ecModel) {\n return createListFromArray(this.getSource(), this, {\n useEncodeDefaulter: true\n });\n },\n getMarkerPosition: function (value) {\n var coordSys = this.coordinateSystem;\n\n if (coordSys) {\n // PENDING if clamp ?\n var pt = coordSys.dataToPoint(coordSys.clampData(value));\n var data = this.getData();\n var offset = data.getLayout('offset');\n var size = data.getLayout('size');\n var offsetIndex = coordSys.getBaseAxis().isHorizontal() ? 0 : 1;\n pt[offsetIndex] += offset + size / 2;\n return pt;\n }\n\n return [NaN, NaN];\n },\n defaultOption: {\n zlevel: 0,\n // 一级层叠\n z: 2,\n // 二级层叠\n coordinateSystem: 'cartesian2d',\n legendHoverLink: true,\n // stack: null\n // Cartesian coordinate system\n // xAxisIndex: 0,\n // yAxisIndex: 0,\n // 最小高度改为0\n barMinHeight: 0,\n // 最小角度为0,仅对极坐标系下的柱状图有效\n barMinAngle: 0,\n // cursor: null,\n large: false,\n largeThreshold: 400,\n progressive: 3e3,\n progressiveChunkMode: 'mod',\n // barMaxWidth: null,\n // In cartesian, the default value is 1. Otherwise null.\n // barMinWidth: null,\n // 默认自适应\n // barWidth: null,\n // 柱间距离,默认为柱形宽度的30%,可设固定值\n // barGap: '30%',\n // 类目间柱形距离,默认为类目间距的20%,可设固定值\n // barCategoryGap: '20%',\n // label: {\n // show: false\n // },\n itemStyle: {},\n emphasis: {}\n }\n});\n\nmodule.exports = _default;","\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 BaseBarSeries = require(\"./BaseBarSeries\");\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*/\nvar _default = BaseBarSeries.extend({\n type: 'series.bar',\n dependencies: ['grid', 'polar'],\n brushSelector: 'rect',\n\n /**\n * @override\n */\n getProgressive: function () {\n // Do not support progressive in normal mode.\n return this.get('large') ? this.get('progressive') : false;\n },\n\n /**\n * @override\n */\n getProgressiveThreshold: function () {\n // Do not support progressive in normal mode.\n var progressiveThreshold = this.get('progressiveThreshold');\n var largeThreshold = this.get('largeThreshold');\n\n if (largeThreshold > progressiveThreshold) {\n progressiveThreshold = largeThreshold;\n }\n\n return progressiveThreshold;\n },\n defaultOption: {\n // If clipped\n // Only available on cartesian2d\n clip: true,\n // If use caps on two sides of bars\n // Only available on tangential polar bar\n roundCap: false,\n showBackground: false,\n backgroundStyle: {\n color: 'rgba(180, 180, 180, 0.2)',\n borderColor: null,\n borderWidth: 0,\n borderType: 'solid',\n borderRadius: 0,\n shadowBlur: 0,\n shadowColor: null,\n shadowOffsetX: 0,\n shadowOffsetY: 0,\n opacity: 1\n }\n }\n});\n\nmodule.exports = _default;","\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 _labelHelper = require(\"../helper/labelHelper\");\n\nvar getDefaultLabel = _labelHelper.getDefaultLabel;\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 setLabel(normalStyle, hoverStyle, itemModel, color, seriesModel, dataIndex, labelPositionOutside) {\n var labelModel = itemModel.getModel('label');\n var hoverLabelModel = itemModel.getModel('emphasis.label');\n graphic.setLabelStyle(normalStyle, hoverStyle, labelModel, hoverLabelModel, {\n labelFetcher: seriesModel,\n labelDataIndex: dataIndex,\n defaultText: getDefaultLabel(seriesModel.getData(), dataIndex),\n isRectText: true,\n autoColor: color\n });\n fixPosition(normalStyle);\n fixPosition(hoverStyle);\n}\n\nfunction fixPosition(style, labelPositionOutside) {\n if (style.textPosition === 'outside') {\n style.textPosition = labelPositionOutside;\n }\n}\n\nexports.setLabel = setLabel;","\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 makeStyleMapper = require(\"../../model/mixin/makeStyleMapper\");\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*/\nvar getBarItemStyle = makeStyleMapper([['fill', 'color'], ['stroke', 'borderColor'], ['lineWidth', 'borderWidth'], // Compatitable with 2\n['stroke', 'barBorderColor'], ['lineWidth', 'barBorderWidth'], ['opacity'], ['shadowBlur'], ['shadowOffsetX'], ['shadowOffsetY'], ['shadowColor']]);\nvar _default = {\n getBarItemStyle: function (excludes) {\n var style = getBarItemStyle(this, excludes);\n\n if (this.getBorderLineDash) {\n var lineDash = this.getBorderLineDash();\n lineDash && (style.lineDash = lineDash);\n }\n\n return style;\n }\n};\nmodule.exports = _default;","\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(\"../graphic\");\n\nvar extendShape = _graphic.extendShape;\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 * Sausage: similar to sector, but have half circle on both sides\n * @public\n */\nvar _default = extendShape({\n type: 'sausage',\n shape: {\n cx: 0,\n cy: 0,\n r0: 0,\n r: 0,\n startAngle: 0,\n endAngle: Math.PI * 2,\n clockwise: true\n },\n buildPath: function (ctx, shape) {\n var x = shape.cx;\n var y = shape.cy;\n var r0 = Math.max(shape.r0 || 0, 0);\n var r = Math.max(shape.r, 0);\n var dr = (r - r0) * 0.5;\n var rCenter = r0 + dr;\n var startAngle = shape.startAngle;\n var endAngle = shape.endAngle;\n var clockwise = shape.clockwise;\n var unitStartX = Math.cos(startAngle);\n var unitStartY = Math.sin(startAngle);\n var unitEndX = Math.cos(endAngle);\n var unitEndY = Math.sin(endAngle);\n var lessThanCircle = clockwise ? endAngle - startAngle < Math.PI * 2 : startAngle - endAngle < Math.PI * 2;\n\n if (lessThanCircle) {\n ctx.moveTo(unitStartX * r0 + x, unitStartY * r0 + y);\n ctx.arc(unitStartX * rCenter + x, unitStartY * rCenter + y, dr, -Math.PI + startAngle, startAngle, !clockwise);\n }\n\n ctx.arc(x, y, r, startAngle, endAngle, !clockwise);\n ctx.moveTo(unitEndX * r + x, unitEndY * r + y);\n ctx.arc(unitEndX * rCenter + x, unitEndY * rCenter + y, dr, endAngle - Math.PI * 2, endAngle - Math.PI, !clockwise);\n\n if (r0 !== 0) {\n ctx.arc(x, y, r0, endAngle, startAngle, clockwise);\n ctx.moveTo(unitStartX * r0 + x, unitEndY * r0 + y);\n }\n\n ctx.closePath();\n }\n});\n\nmodule.exports = _default;","\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 _config = require(\"../../config\");\n\nvar __DEV__ = _config.__DEV__;\n\nvar echarts = require(\"../../echarts\");\n\nvar zrUtil = require(\"zrender/lib/core/util\");\n\nvar graphic = require(\"../../util/graphic\");\n\nvar _helper = require(\"./helper\");\n\nvar setLabel = _helper.setLabel;\n\nvar Model = require(\"../../model/Model\");\n\nvar barItemStyle = require(\"./barItemStyle\");\n\nvar Path = require(\"zrender/lib/graphic/Path\");\n\nvar Group = require(\"zrender/lib/container/Group\");\n\nvar _throttle = require(\"../../util/throttle\");\n\nvar throttle = _throttle.throttle;\n\nvar _createClipPathFromCoordSys = require(\"../helper/createClipPathFromCoordSys\");\n\nvar createClipPath = _createClipPathFromCoordSys.createClipPath;\n\nvar Sausage = require(\"../../util/shape/sausage\");\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*/\nvar BAR_BORDER_WIDTH_QUERY = ['itemStyle', 'barBorderWidth'];\nvar _eventPos = [0, 0]; // FIXME\n// Just for compatible with ec2.\n\nzrUtil.extend(Model.prototype, barItemStyle);\n\nfunction getClipArea(coord, data) {\n var coordSysClipArea = coord.getArea && coord.getArea();\n\n if (coord.type === 'cartesian2d') {\n var baseAxis = coord.getBaseAxis(); // When boundaryGap is false or using time axis. bar may exceed the grid.\n // We should not clip this part.\n // See test/bar2.html\n\n if (baseAxis.type !== 'category' || !baseAxis.onBand) {\n var expandWidth = data.getLayout('bandWidth');\n\n if (baseAxis.isHorizontal()) {\n coordSysClipArea.x -= expandWidth;\n coordSysClipArea.width += expandWidth * 2;\n } else {\n coordSysClipArea.y -= expandWidth;\n coordSysClipArea.height += expandWidth * 2;\n }\n }\n }\n\n return coordSysClipArea;\n}\n\nvar _default = echarts.extendChartView({\n type: 'bar',\n render: function (seriesModel, ecModel, api) {\n this._updateDrawMode(seriesModel);\n\n var coordinateSystemType = seriesModel.get('coordinateSystem');\n\n if (coordinateSystemType === 'cartesian2d' || coordinateSystemType === 'polar') {\n this._isLargeDraw ? this._renderLarge(seriesModel, ecModel, api) : this._renderNormal(seriesModel, ecModel, api);\n } else {}\n\n return this.group;\n },\n incrementalPrepareRender: function (seriesModel, ecModel, api) {\n this._clear();\n\n this._updateDrawMode(seriesModel);\n },\n incrementalRender: function (params, seriesModel, ecModel, api) {\n // Do not support progressive in normal mode.\n this._incrementalRenderLarge(params, seriesModel);\n },\n _updateDrawMode: function (seriesModel) {\n var isLargeDraw = seriesModel.pipelineContext.large;\n\n if (this._isLargeDraw == null || isLargeDraw ^ this._isLargeDraw) {\n this._isLargeDraw = isLargeDraw;\n\n this._clear();\n }\n },\n _renderNormal: function (seriesModel, ecModel, api) {\n var group = this.group;\n var data = seriesModel.getData();\n var oldData = this._data;\n var coord = seriesModel.coordinateSystem;\n var baseAxis = coord.getBaseAxis();\n var isHorizontalOrRadial;\n\n if (coord.type === 'cartesian2d') {\n isHorizontalOrRadial = baseAxis.isHorizontal();\n } else if (coord.type === 'polar') {\n isHorizontalOrRadial = baseAxis.dim === 'angle';\n }\n\n var animationModel = seriesModel.isAnimationEnabled() ? seriesModel : null;\n var needsClip = seriesModel.get('clip', true);\n var coordSysClipArea = getClipArea(coord, data); // If there is clipPath created in large mode. Remove it.\n\n group.removeClipPath(); // We don't use clipPath in normal mode because we needs a perfect animation\n // And don't want the label are clipped.\n\n var roundCap = seriesModel.get('roundCap', true);\n var drawBackground = seriesModel.get('showBackground', true);\n var backgroundModel = seriesModel.getModel('backgroundStyle');\n var barBorderRadius = backgroundModel.get('barBorderRadius') || 0;\n var bgEls = [];\n var oldBgEls = this._backgroundEls || [];\n\n var createBackground = function (dataIndex) {\n var bgLayout = getLayout[coord.type](data, dataIndex);\n var bgEl = createBackgroundEl(coord, isHorizontalOrRadial, bgLayout);\n bgEl.useStyle(backgroundModel.getBarItemStyle()); // Only cartesian2d support borderRadius.\n\n if (coord.type === 'cartesian2d') {\n bgEl.setShape('r', barBorderRadius);\n }\n\n bgEls[dataIndex] = bgEl;\n return bgEl;\n };\n\n data.diff(oldData).add(function (dataIndex) {\n var itemModel = data.getItemModel(dataIndex);\n var layout = getLayout[coord.type](data, dataIndex, itemModel);\n\n if (drawBackground) {\n createBackground(dataIndex);\n } // If dataZoom in filteMode: 'empty', the baseValue can be set as NaN in \"axisProxy\".\n\n\n if (!data.hasValue(dataIndex)) {\n return;\n }\n\n if (needsClip) {\n // Clip will modify the layout params.\n // And return a boolean to determine if the shape are fully clipped.\n var isClipped = clip[coord.type](coordSysClipArea, layout);\n\n if (isClipped) {\n group.remove(el);\n return;\n }\n }\n\n var el = elementCreator[coord.type](dataIndex, layout, isHorizontalOrRadial, animationModel, false, roundCap);\n data.setItemGraphicEl(dataIndex, el);\n group.add(el);\n updateStyle(el, data, dataIndex, itemModel, layout, seriesModel, isHorizontalOrRadial, coord.type === 'polar');\n }).update(function (newIndex, oldIndex) {\n var itemModel = data.getItemModel(newIndex);\n var layout = getLayout[coord.type](data, newIndex, itemModel);\n\n if (drawBackground) {\n var bgEl;\n\n if (oldBgEls.length === 0) {\n bgEl = createBackground(oldIndex);\n } else {\n bgEl = oldBgEls[oldIndex];\n bgEl.useStyle(backgroundModel.getBarItemStyle()); // Only cartesian2d support borderRadius.\n\n if (coord.type === 'cartesian2d') {\n bgEl.setShape('r', barBorderRadius);\n }\n\n bgEls[newIndex] = bgEl;\n }\n\n var bgLayout = getLayout[coord.type](data, newIndex);\n var shape = createBackgroundShape(isHorizontalOrRadial, bgLayout, coord);\n graphic.updateProps(bgEl, {\n shape: shape\n }, animationModel, newIndex);\n }\n\n var el = oldData.getItemGraphicEl(oldIndex);\n\n if (!data.hasValue(newIndex)) {\n group.remove(el);\n return;\n }\n\n if (needsClip) {\n var isClipped = clip[coord.type](coordSysClipArea, layout);\n\n if (isClipped) {\n group.remove(el);\n return;\n }\n }\n\n if (el) {\n graphic.updateProps(el, {\n shape: layout\n }, animationModel, newIndex);\n } else {\n el = elementCreator[coord.type](newIndex, layout, isHorizontalOrRadial, animationModel, true, roundCap);\n }\n\n data.setItemGraphicEl(newIndex, el); // Add back\n\n group.add(el);\n updateStyle(el, data, newIndex, itemModel, layout, seriesModel, isHorizontalOrRadial, coord.type === 'polar');\n }).remove(function (dataIndex) {\n var el = oldData.getItemGraphicEl(dataIndex);\n\n if (coord.type === 'cartesian2d') {\n el && removeRect(dataIndex, animationModel, el);\n } else {\n el && removeSector(dataIndex, animationModel, el);\n }\n }).execute();\n var bgGroup = this._backgroundGroup || (this._backgroundGroup = new Group());\n bgGroup.removeAll();\n\n for (var i = 0; i < bgEls.length; ++i) {\n bgGroup.add(bgEls[i]);\n }\n\n group.add(bgGroup);\n this._backgroundEls = bgEls;\n this._data = data;\n },\n _renderLarge: function (seriesModel, ecModel, api) {\n this._clear();\n\n createLarge(seriesModel, this.group); // Use clipPath in large mode.\n\n var clipPath = seriesModel.get('clip', true) ? createClipPath(seriesModel.coordinateSystem, false, seriesModel) : null;\n\n if (clipPath) {\n this.group.setClipPath(clipPath);\n } else {\n this.group.removeClipPath();\n }\n },\n _incrementalRenderLarge: function (params, seriesModel) {\n this._removeBackground();\n\n createLarge(seriesModel, this.group, true);\n },\n dispose: zrUtil.noop,\n remove: function (ecModel) {\n this._clear(ecModel);\n },\n _clear: function (ecModel) {\n var group = this.group;\n var data = this._data;\n\n if (ecModel && ecModel.get('animation') && data && !this._isLargeDraw) {\n this._removeBackground();\n\n this._backgroundEls = [];\n data.eachItemGraphicEl(function (el) {\n if (el.type === 'sector') {\n removeSector(el.dataIndex, ecModel, el);\n } else {\n removeRect(el.dataIndex, ecModel, el);\n }\n });\n } else {\n group.removeAll();\n }\n\n this._data = null;\n },\n _removeBackground: function () {\n this.group.remove(this._backgroundGroup);\n this._backgroundGroup = null;\n }\n});\n\nvar mathMax = Math.max;\nvar mathMin = Math.min;\nvar clip = {\n cartesian2d: function (coordSysBoundingRect, layout) {\n var signWidth = layout.width < 0 ? -1 : 1;\n var signHeight = layout.height < 0 ? -1 : 1; // Needs positive width and height\n\n if (signWidth < 0) {\n layout.x += layout.width;\n layout.width = -layout.width;\n }\n\n if (signHeight < 0) {\n layout.y += layout.height;\n layout.height = -layout.height;\n }\n\n var x = mathMax(layout.x, coordSysBoundingRect.x);\n var x2 = mathMin(layout.x + layout.width, coordSysBoundingRect.x + coordSysBoundingRect.width);\n var y = mathMax(layout.y, coordSysBoundingRect.y);\n var y2 = mathMin(layout.y + layout.height, coordSysBoundingRect.y + coordSysBoundingRect.height);\n layout.x = x;\n layout.y = y;\n layout.width = x2 - x;\n layout.height = y2 - y;\n var clipped = layout.width < 0 || layout.height < 0; // Reverse back\n\n if (signWidth < 0) {\n layout.x += layout.width;\n layout.width = -layout.width;\n }\n\n if (signHeight < 0) {\n layout.y += layout.height;\n layout.height = -layout.height;\n }\n\n return clipped;\n },\n polar: function (coordSysClipArea, layout) {\n var signR = layout.r0 <= layout.r ? 1 : -1; // Make sure r is larger than r0\n\n if (signR < 0) {\n var r = layout.r;\n layout.r = layout.r0;\n layout.r0 = r;\n }\n\n var r = mathMin(layout.r, coordSysClipArea.r);\n var r0 = mathMax(layout.r0, coordSysClipArea.r0);\n layout.r = r;\n layout.r0 = r0;\n var clipped = r - r0 < 0; // Reverse back\n\n if (signR < 0) {\n var r = layout.r;\n layout.r = layout.r0;\n layout.r0 = r;\n }\n\n return clipped;\n }\n};\nvar elementCreator = {\n cartesian2d: function (dataIndex, layout, isHorizontal, animationModel, isUpdate) {\n var rect = new graphic.Rect({\n shape: zrUtil.extend({}, layout),\n z2: 1\n });\n rect.name = 'item'; // Animation\n\n if (animationModel) {\n var rectShape = rect.shape;\n var animateProperty = isHorizontal ? 'height' : 'width';\n var animateTarget = {};\n rectShape[animateProperty] = 0;\n animateTarget[animateProperty] = layout[animateProperty];\n graphic[isUpdate ? 'updateProps' : 'initProps'](rect, {\n shape: animateTarget\n }, animationModel, dataIndex);\n }\n\n return rect;\n },\n polar: function (dataIndex, layout, isRadial, animationModel, isUpdate, roundCap) {\n // Keep the same logic with bar in catesion: use end value to control\n // direction. Notice that if clockwise is true (by default), the sector\n // will always draw clockwisely, no matter whether endAngle is greater\n // or less than startAngle.\n var clockwise = layout.startAngle < layout.endAngle;\n var ShapeClass = !isRadial && roundCap ? Sausage : graphic.Sector;\n var sector = new ShapeClass({\n shape: zrUtil.defaults({\n clockwise: clockwise\n }, layout),\n z2: 1\n });\n sector.name = 'item'; // Animation\n\n if (animationModel) {\n var sectorShape = sector.shape;\n var animateProperty = isRadial ? 'r' : 'endAngle';\n var animateTarget = {};\n sectorShape[animateProperty] = isRadial ? 0 : layout.startAngle;\n animateTarget[animateProperty] = layout[animateProperty];\n graphic[isUpdate ? 'updateProps' : 'initProps'](sector, {\n shape: animateTarget\n }, animationModel, dataIndex);\n }\n\n return sector;\n }\n};\n\nfunction removeRect(dataIndex, animationModel, el) {\n // Not show text when animating\n el.style.text = null;\n graphic.updateProps(el, {\n shape: {\n width: 0\n }\n }, animationModel, dataIndex, function () {\n el.parent && el.parent.remove(el);\n });\n}\n\nfunction removeSector(dataIndex, animationModel, el) {\n // Not show text when animating\n el.style.text = null;\n graphic.updateProps(el, {\n shape: {\n r: el.shape.r0\n }\n }, animationModel, dataIndex, function () {\n el.parent && el.parent.remove(el);\n });\n}\n\nvar getLayout = {\n // itemModel is only used to get borderWidth, which is not needed\n // when calculating bar background layout.\n cartesian2d: function (data, dataIndex, itemModel) {\n var layout = data.getItemLayout(dataIndex);\n var fixedLineWidth = itemModel ? getLineWidth(itemModel, layout) : 0; // fix layout with lineWidth\n\n var signX = layout.width > 0 ? 1 : -1;\n var signY = layout.height > 0 ? 1 : -1;\n return {\n x: layout.x + signX * fixedLineWidth / 2,\n y: layout.y + signY * fixedLineWidth / 2,\n width: layout.width - signX * fixedLineWidth,\n height: layout.height - signY * fixedLineWidth\n };\n },\n polar: function (data, dataIndex, itemModel) {\n var layout = data.getItemLayout(dataIndex);\n return {\n cx: layout.cx,\n cy: layout.cy,\n r0: layout.r0,\n r: layout.r,\n startAngle: layout.startAngle,\n endAngle: layout.endAngle\n };\n }\n};\n\nfunction isZeroOnPolar(layout) {\n return layout.startAngle != null && layout.endAngle != null && layout.startAngle === layout.endAngle;\n}\n\nfunction updateStyle(el, data, dataIndex, itemModel, layout, seriesModel, isHorizontal, isPolar) {\n var color = data.getItemVisual(dataIndex, 'color');\n var opacity = data.getItemVisual(dataIndex, 'opacity');\n var stroke = data.getVisual('borderColor');\n var itemStyleModel = itemModel.getModel('itemStyle');\n var hoverStyle = itemModel.getModel('emphasis.itemStyle').getBarItemStyle();\n\n if (!isPolar) {\n el.setShape('r', itemStyleModel.get('barBorderRadius') || 0);\n }\n\n el.useStyle(zrUtil.defaults({\n stroke: isZeroOnPolar(layout) ? 'none' : stroke,\n fill: isZeroOnPolar(layout) ? 'none' : color,\n opacity: opacity\n }, itemStyleModel.getBarItemStyle()));\n var cursorStyle = itemModel.getShallow('cursor');\n cursorStyle && el.attr('cursor', cursorStyle);\n var labelPositionOutside = isHorizontal ? layout.height > 0 ? 'bottom' : 'top' : layout.width > 0 ? 'left' : 'right';\n\n if (!isPolar) {\n setLabel(el.style, hoverStyle, itemModel, color, seriesModel, dataIndex, labelPositionOutside);\n }\n\n if (isZeroOnPolar(layout)) {\n hoverStyle.fill = hoverStyle.stroke = 'none';\n }\n\n graphic.setHoverStyle(el, hoverStyle);\n} // In case width or height are too small.\n\n\nfunction getLineWidth(itemModel, rawLayout) {\n var lineWidth = itemModel.get(BAR_BORDER_WIDTH_QUERY) || 0; // width or height may be NaN for empty data\n\n var width = isNaN(rawLayout.width) ? Number.MAX_VALUE : Math.abs(rawLayout.width);\n var height = isNaN(rawLayout.height) ? Number.MAX_VALUE : Math.abs(rawLayout.height);\n return Math.min(lineWidth, width, height);\n}\n\nvar LargePath = Path.extend({\n type: 'largeBar',\n shape: {\n points: []\n },\n buildPath: function (ctx, shape) {\n // Drawing lines is more efficient than drawing\n // a whole line or drawing rects.\n var points = shape.points;\n var startPoint = this.__startPoint;\n var baseDimIdx = this.__baseDimIdx;\n\n for (var i = 0; i < points.length; i += 2) {\n startPoint[baseDimIdx] = points[i + baseDimIdx];\n ctx.moveTo(startPoint[0], startPoint[1]);\n ctx.lineTo(points[i], points[i + 1]);\n }\n }\n});\n\nfunction createLarge(seriesModel, group, incremental) {\n // TODO support polar\n var data = seriesModel.getData();\n var startPoint = [];\n var baseDimIdx = data.getLayout('valueAxisHorizontal') ? 1 : 0;\n startPoint[1 - baseDimIdx] = data.getLayout('valueAxisStart');\n var largeDataIndices = data.getLayout('largeDataIndices');\n var barWidth = data.getLayout('barWidth');\n var backgroundModel = seriesModel.getModel('backgroundStyle');\n var drawBackground = seriesModel.get('showBackground', true);\n\n if (drawBackground) {\n var points = data.getLayout('largeBackgroundPoints');\n var backgroundStartPoint = [];\n backgroundStartPoint[1 - baseDimIdx] = data.getLayout('backgroundStart');\n var bgEl = new LargePath({\n shape: {\n points: points\n },\n incremental: !!incremental,\n __startPoint: backgroundStartPoint,\n __baseDimIdx: baseDimIdx,\n __largeDataIndices: largeDataIndices,\n __barWidth: barWidth,\n silent: true,\n z2: 0\n });\n setLargeBackgroundStyle(bgEl, backgroundModel, data);\n group.add(bgEl);\n }\n\n var el = new LargePath({\n shape: {\n points: data.getLayout('largePoints')\n },\n incremental: !!incremental,\n __startPoint: startPoint,\n __baseDimIdx: baseDimIdx,\n __largeDataIndices: largeDataIndices,\n __barWidth: barWidth\n });\n group.add(el);\n setLargeStyle(el, seriesModel, data); // Enable tooltip and user mouse/touch event handlers.\n\n el.seriesIndex = seriesModel.seriesIndex;\n\n if (!seriesModel.get('silent')) {\n el.on('mousedown', largePathUpdateDataIndex);\n el.on('mousemove', largePathUpdateDataIndex);\n }\n} // Use throttle to avoid frequently traverse to find dataIndex.\n\n\nvar largePathUpdateDataIndex = throttle(function (event) {\n var largePath = this;\n var dataIndex = largePathFindDataIndex(largePath, event.offsetX, event.offsetY);\n largePath.dataIndex = dataIndex >= 0 ? dataIndex : null;\n}, 30, false);\n\nfunction largePathFindDataIndex(largePath, x, y) {\n var baseDimIdx = largePath.__baseDimIdx;\n var valueDimIdx = 1 - baseDimIdx;\n var points = largePath.shape.points;\n var largeDataIndices = largePath.__largeDataIndices;\n var barWidthHalf = Math.abs(largePath.__barWidth / 2);\n var startValueVal = largePath.__startPoint[valueDimIdx];\n _eventPos[0] = x;\n _eventPos[1] = y;\n var pointerBaseVal = _eventPos[baseDimIdx];\n var pointerValueVal = _eventPos[1 - baseDimIdx];\n var baseLowerBound = pointerBaseVal - barWidthHalf;\n var baseUpperBound = pointerBaseVal + barWidthHalf;\n\n for (var i = 0, len = points.length / 2; i < len; i++) {\n var ii = i * 2;\n var barBaseVal = points[ii + baseDimIdx];\n var barValueVal = points[ii + valueDimIdx];\n\n if (barBaseVal >= baseLowerBound && barBaseVal <= baseUpperBound && (startValueVal <= barValueVal ? pointerValueVal >= startValueVal && pointerValueVal <= barValueVal : pointerValueVal >= barValueVal && pointerValueVal <= startValueVal)) {\n return largeDataIndices[i];\n }\n }\n\n return -1;\n}\n\nfunction setLargeStyle(el, seriesModel, data) {\n var borderColor = data.getVisual('borderColor') || data.getVisual('color');\n var itemStyle = seriesModel.getModel('itemStyle').getItemStyle(['color', 'borderColor']);\n el.useStyle(itemStyle);\n el.style.fill = null;\n el.style.stroke = borderColor;\n el.style.lineWidth = data.getLayout('barWidth');\n}\n\nfunction setLargeBackgroundStyle(el, backgroundModel, data) {\n var borderColor = backgroundModel.get('borderColor') || backgroundModel.get('color');\n var itemStyle = backgroundModel.getItemStyle(['color', 'borderColor']);\n el.useStyle(itemStyle);\n el.style.fill = null;\n el.style.stroke = borderColor;\n el.style.lineWidth = data.getLayout('barWidth');\n}\n\nfunction createBackgroundShape(isHorizontalOrRadial, layout, coord) {\n var coordLayout;\n var isPolar = coord.type === 'polar';\n\n if (isPolar) {\n coordLayout = coord.getArea();\n } else {\n coordLayout = coord.grid.getRect();\n }\n\n if (isPolar) {\n return {\n cx: coordLayout.cx,\n cy: coordLayout.cy,\n r0: isHorizontalOrRadial ? coordLayout.r0 : layout.r0,\n r: isHorizontalOrRadial ? coordLayout.r : layout.r,\n startAngle: isHorizontalOrRadial ? layout.startAngle : 0,\n endAngle: isHorizontalOrRadial ? layout.endAngle : Math.PI * 2\n };\n } else {\n return {\n x: isHorizontalOrRadial ? layout.x : coordLayout.x,\n y: isHorizontalOrRadial ? coordLayout.y : layout.y,\n width: isHorizontalOrRadial ? layout.width : coordLayout.width,\n height: isHorizontalOrRadial ? coordLayout.height : layout.height\n };\n }\n}\n\nfunction createBackgroundEl(coord, isHorizontalOrRadial, layout) {\n var ElementClz = coord.type === 'polar' ? graphic.Sector : graphic.Rect;\n return new ElementClz({\n shape: createBackgroundShape(isHorizontalOrRadial, layout, coord),\n silent: true,\n z2: 0\n });\n}\n\nmodule.exports = _default;","\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 echarts = require(\"../echarts\");\n\nvar zrUtil = require(\"zrender/lib/core/util\");\n\nvar _barGrid = require(\"../layout/barGrid\");\n\nvar layout = _barGrid.layout;\nvar largeLayout = _barGrid.largeLayout;\n\nrequire(\"../coord/cartesian/Grid\");\n\nrequire(\"./bar/BarSeries\");\n\nrequire(\"./bar/BarView\");\n\nrequire(\"../component/gridSimple\");\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// In case developer forget to include grid component\necharts.registerLayout(echarts.PRIORITY.VISUAL.LAYOUT, zrUtil.curry(layout, 'bar')); // Use higher prority to avoid to be blocked by other overall layout, which do not\n// only exist in this module, but probably also exist in other modules, like `barPolar`.\n\necharts.registerLayout(echarts.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT, largeLayout);\necharts.registerVisual({\n seriesType: 'bar',\n reset: function (seriesModel) {\n // Visual coding for legend\n seriesModel.getData().setVisual('legendSymbol', 'roundRect');\n }\n});"],"names":["SeriesModel","require$$0","createListFromArray","require$$1","_default","option","ecModel","value","coordSys","pt","data","offset","size","offsetIndex","BaseBarSeries","progressiveThreshold","largeThreshold","graphic","_labelHelper","getDefaultLabel","setLabel","normalStyle","hoverStyle","itemModel","color","seriesModel","dataIndex","labelPositionOutside","labelModel","hoverLabelModel","fixPosition","style","helper","makeStyleMapper","getBarItemStyle","excludes","lineDash","barItemStyle","_graphic","extendShape","ctx","shape","x","y","r0","r","dr","rCenter","startAngle","endAngle","clockwise","unitStartX","unitStartY","unitEndX","unitEndY","lessThanCircle","sausage","echarts","zrUtil","require$$2","require$$3","_helper","require$$4","Model","require$$5","require$$6","Path","require$$7","Group","require$$8","_throttle","require$$9","throttle","_createClipPathFromCoordSys","require$$10","createClipPath","Sausage","require$$11","BAR_BORDER_WIDTH_QUERY","_eventPos","getClipArea","coord","coordSysClipArea","baseAxis","expandWidth","api","coordinateSystemType","params","isLargeDraw","group","oldData","isHorizontalOrRadial","animationModel","needsClip","roundCap","drawBackground","backgroundModel","barBorderRadius","bgEls","oldBgEls","createBackground","bgLayout","getLayout","bgEl","createBackgroundEl","layout","isClipped","clip","el","elementCreator","updateStyle","newIndex","oldIndex","createBackgroundShape","removeRect","removeSector","bgGroup","i","createLarge","clipPath","mathMax","mathMin","coordSysBoundingRect","signWidth","signHeight","x2","y2","clipped","signR","isHorizontal","isUpdate","rect","rectShape","animateProperty","animateTarget","isRadial","ShapeClass","sector","sectorShape","fixedLineWidth","getLineWidth","signX","signY","isZeroOnPolar","isPolar","opacity","stroke","itemStyleModel","cursorStyle","rawLayout","lineWidth","width","height","LargePath","points","startPoint","baseDimIdx","incremental","largeDataIndices","barWidth","backgroundStartPoint","setLargeBackgroundStyle","setLargeStyle","largePathUpdateDataIndex","event","largePath","largePathFindDataIndex","valueDimIdx","barWidthHalf","startValueVal","pointerBaseVal","pointerValueVal","baseLowerBound","baseUpperBound","len","ii","barBaseVal","barValueVal","borderColor","itemStyle","coordLayout","ElementClz","_barGrid","largeLayout"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6]}