{"version":3,"file":"gridSimple-ByRE6bME.js","sources":["../../../node_modules/echarts/lib/coord/cartesian/Cartesian.js","../../../node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","../../../node_modules/echarts/lib/coord/cartesian/Axis2D.js","../../../node_modules/echarts/lib/coord/axisDefault.js","../../../node_modules/echarts/lib/coord/axisModelCreator.js","../../../node_modules/echarts/lib/coord/cartesian/AxisModel.js","../../../node_modules/echarts/lib/coord/cartesian/GridModel.js","../../../node_modules/echarts/lib/coord/cartesian/Grid.js","../../../node_modules/echarts/lib/component/axis/axisSplitHelper.js","../../../node_modules/echarts/lib/component/axis/CartesianAxisView.js","../../../node_modules/echarts/lib/component/gridSimple.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 zrUtil = require(\"zrender/lib/core/util\");\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 * Cartesian coordinate system\n * @module echarts/coord/Cartesian\n *\n */\nfunction dimAxisMapper(dim) {\n return this._axes[dim];\n}\n/**\n * @alias module:echarts/coord/Cartesian\n * @constructor\n */\n\n\nvar Cartesian = function (name) {\n this._axes = {};\n this._dimList = [];\n /**\n * @type {string}\n */\n\n this.name = name || '';\n};\n\nCartesian.prototype = {\n constructor: Cartesian,\n type: 'cartesian',\n\n /**\n * Get axis\n * @param {number|string} dim\n * @return {module:echarts/coord/Cartesian~Axis}\n */\n getAxis: function (dim) {\n return this._axes[dim];\n },\n\n /**\n * Get axes list\n * @return {Array.}\n */\n getAxes: function () {\n return zrUtil.map(this._dimList, dimAxisMapper, this);\n },\n\n /**\n * Get axes list by given scale type\n */\n getAxesByScale: function (scaleType) {\n scaleType = scaleType.toLowerCase();\n return zrUtil.filter(this.getAxes(), function (axis) {\n return axis.scale.type === scaleType;\n });\n },\n\n /**\n * Add axis\n * @param {module:echarts/coord/Cartesian.Axis}\n */\n addAxis: function (axis) {\n var dim = axis.dim;\n this._axes[dim] = axis;\n\n this._dimList.push(dim);\n },\n\n /**\n * Convert data to coord in nd space\n * @param {Array.|Object.} val\n * @return {Array.|Object.}\n */\n dataToCoord: function (val) {\n return this._dataCoordConvert(val, 'dataToCoord');\n },\n\n /**\n * Convert coord in nd space to data\n * @param {Array.|Object.} val\n * @return {Array.|Object.}\n */\n coordToData: function (val) {\n return this._dataCoordConvert(val, 'coordToData');\n },\n _dataCoordConvert: function (input, method) {\n var dimList = this._dimList;\n var output = input instanceof Array ? [] : {};\n\n for (var i = 0; i < dimList.length; i++) {\n var dim = dimList[i];\n var axis = this._axes[dim];\n output[dim] = axis[method](input[dim]);\n }\n\n return output;\n }\n};\nvar _default = Cartesian;\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 zrUtil = require(\"zrender/lib/core/util\");\n\nvar BoundingRect = require(\"zrender/lib/core/BoundingRect\");\n\nvar Cartesian = require(\"./Cartesian\");\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 Cartesian2D(name) {\n Cartesian.call(this, name);\n}\n\nCartesian2D.prototype = {\n constructor: Cartesian2D,\n type: 'cartesian2d',\n\n /**\n * @type {Array.}\n * @readOnly\n */\n dimensions: ['x', 'y'],\n\n /**\n * Base axis will be used on stacking.\n *\n * @return {module:echarts/coord/cartesian/Axis2D}\n */\n getBaseAxis: function () {\n return this.getAxesByScale('ordinal')[0] || this.getAxesByScale('time')[0] || this.getAxis('x');\n },\n\n /**\n * If contain point\n * @param {Array.} point\n * @return {boolean}\n */\n containPoint: function (point) {\n var axisX = this.getAxis('x');\n var axisY = this.getAxis('y');\n return axisX.contain(axisX.toLocalCoord(point[0])) && axisY.contain(axisY.toLocalCoord(point[1]));\n },\n\n /**\n * If contain data\n * @param {Array.} data\n * @return {boolean}\n */\n containData: function (data) {\n return this.getAxis('x').containData(data[0]) && this.getAxis('y').containData(data[1]);\n },\n\n /**\n * @param {Array.} data\n * @param {Array.} out\n * @return {Array.}\n */\n dataToPoint: function (data, reserved, out) {\n var xAxis = this.getAxis('x');\n var yAxis = this.getAxis('y');\n out = out || [];\n out[0] = xAxis.toGlobalCoord(xAxis.dataToCoord(data[0]));\n out[1] = yAxis.toGlobalCoord(yAxis.dataToCoord(data[1]));\n return out;\n },\n\n /**\n * @param {Array.} data\n * @param {Array.} out\n * @return {Array.}\n */\n clampData: function (data, out) {\n var xScale = this.getAxis('x').scale;\n var yScale = this.getAxis('y').scale;\n var xAxisExtent = xScale.getExtent();\n var yAxisExtent = yScale.getExtent();\n var x = xScale.parse(data[0]);\n var y = yScale.parse(data[1]);\n out = out || [];\n out[0] = Math.min(Math.max(Math.min(xAxisExtent[0], xAxisExtent[1]), x), Math.max(xAxisExtent[0], xAxisExtent[1]));\n out[1] = Math.min(Math.max(Math.min(yAxisExtent[0], yAxisExtent[1]), y), Math.max(yAxisExtent[0], yAxisExtent[1]));\n return out;\n },\n\n /**\n * @param {Array.} point\n * @param {Array.} out\n * @return {Array.}\n */\n pointToData: function (point, out) {\n var xAxis = this.getAxis('x');\n var yAxis = this.getAxis('y');\n out = out || [];\n out[0] = xAxis.coordToData(xAxis.toLocalCoord(point[0]));\n out[1] = yAxis.coordToData(yAxis.toLocalCoord(point[1]));\n return out;\n },\n\n /**\n * Get other axis\n * @param {module:echarts/coord/cartesian/Axis2D} axis\n */\n getOtherAxis: function (axis) {\n return this.getAxis(axis.dim === 'x' ? 'y' : 'x');\n },\n\n /**\n * Get rect area of cartesian.\n * Area will have a contain function to determine if a point is in the coordinate system.\n * @return {BoundingRect}\n */\n getArea: function () {\n var xExtent = this.getAxis('x').getGlobalExtent();\n var yExtent = this.getAxis('y').getGlobalExtent();\n var x = Math.min(xExtent[0], xExtent[1]);\n var y = Math.min(yExtent[0], yExtent[1]);\n var width = Math.max(xExtent[0], xExtent[1]) - x;\n var height = Math.max(yExtent[0], yExtent[1]) - y;\n var rect = new BoundingRect(x, y, width, height);\n return rect;\n }\n};\nzrUtil.inherits(Cartesian2D, Cartesian);\nvar _default = Cartesian2D;\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 zrUtil = require(\"zrender/lib/core/util\");\n\nvar Axis = require(\"../Axis\");\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 * Extend axis 2d\n * @constructor module:echarts/coord/cartesian/Axis2D\n * @extends {module:echarts/coord/cartesian/Axis}\n * @param {string} dim\n * @param {*} scale\n * @param {Array.} coordExtent\n * @param {string} axisType\n * @param {string} position\n */\nvar Axis2D = function (dim, scale, coordExtent, axisType, position) {\n Axis.call(this, dim, scale, coordExtent);\n /**\n * Axis type\n * - 'category'\n * - 'value'\n * - 'time'\n * - 'log'\n * @type {string}\n */\n\n this.type = axisType || 'value';\n /**\n * Axis position\n * - 'top'\n * - 'bottom'\n * - 'left'\n * - 'right'\n */\n\n this.position = position || 'bottom';\n};\n\nAxis2D.prototype = {\n constructor: Axis2D,\n\n /**\n * Index of axis, can be used as key\n */\n index: 0,\n\n /**\n * Implemented in .\n * @return {Array.}\n * If not on zero of other axis, return null/undefined.\n * If no axes, return an empty array.\n */\n getAxesOnZeroOf: null,\n\n /**\n * Axis model\n * @param {module:echarts/coord/cartesian/AxisModel}\n */\n model: null,\n isHorizontal: function () {\n var position = this.position;\n return position === 'top' || position === 'bottom';\n },\n\n /**\n * Each item cooresponds to this.getExtent(), which\n * means globalExtent[0] may greater than globalExtent[1],\n * unless `asc` is input.\n *\n * @param {boolean} [asc]\n * @return {Array.}\n */\n getGlobalExtent: function (asc) {\n var ret = this.getExtent();\n ret[0] = this.toGlobalCoord(ret[0]);\n ret[1] = this.toGlobalCoord(ret[1]);\n asc && ret[0] > ret[1] && ret.reverse();\n return ret;\n },\n getOtherAxis: function () {\n this.grid.getOtherAxis();\n },\n\n /**\n * @override\n */\n pointToData: function (point, clamp) {\n return this.coordToData(this.toLocalCoord(point[this.dim === 'x' ? 0 : 1]), clamp);\n },\n\n /**\n * Transform global coord to local coord,\n * i.e. var localCoord = axis.toLocalCoord(80);\n * designate by module:echarts/coord/cartesian/Grid.\n * @type {Function}\n */\n toLocalCoord: null,\n\n /**\n * Transform global coord to local coord,\n * i.e. var globalCoord = axis.toLocalCoord(40);\n * designate by module:echarts/coord/cartesian/Grid.\n * @type {Function}\n */\n toGlobalCoord: null\n};\nzrUtil.inherits(Axis2D, Axis);\nvar _default = Axis2D;\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 zrUtil = require(\"zrender/lib/core/util\");\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 defaultOption = {\n show: true,\n zlevel: 0,\n z: 0,\n // Inverse the axis.\n inverse: false,\n // Axis name displayed.\n name: '',\n // 'start' | 'middle' | 'end'\n nameLocation: 'end',\n // By degree. By default auto rotate by nameLocation.\n nameRotate: null,\n nameTruncate: {\n maxWidth: null,\n ellipsis: '...',\n placeholder: '.'\n },\n // Use global text style by default.\n nameTextStyle: {},\n // The gap between axisName and axisLine.\n nameGap: 15,\n // Default `false` to support tooltip.\n silent: false,\n // Default `false` to avoid legacy user event listener fail.\n triggerEvent: false,\n tooltip: {\n show: false\n },\n axisPointer: {},\n axisLine: {\n show: true,\n onZero: true,\n onZeroAxisIndex: null,\n lineStyle: {\n color: '#333',\n width: 1,\n type: 'solid'\n },\n // The arrow at both ends the the axis.\n symbol: ['none', 'none'],\n symbolSize: [10, 15]\n },\n axisTick: {\n show: true,\n // Whether axisTick is inside the grid or outside the grid.\n inside: false,\n // The length of axisTick.\n length: 5,\n lineStyle: {\n width: 1\n }\n },\n axisLabel: {\n show: true,\n // Whether axisLabel is inside the grid or outside the grid.\n inside: false,\n rotate: 0,\n // true | false | null/undefined (auto)\n showMinLabel: null,\n // true | false | null/undefined (auto)\n showMaxLabel: null,\n margin: 8,\n // formatter: null,\n fontSize: 12\n },\n splitLine: {\n show: true,\n lineStyle: {\n color: ['#ccc'],\n width: 1,\n type: 'solid'\n }\n },\n splitArea: {\n show: false,\n areaStyle: {\n color: ['rgba(250,250,250,0.3)', 'rgba(200,200,200,0.3)']\n }\n }\n};\nvar axisDefault = {};\naxisDefault.categoryAxis = zrUtil.merge({\n // The gap at both ends of the axis. For categoryAxis, boolean.\n boundaryGap: true,\n // Set false to faster category collection.\n // Only usefull in the case like: category is\n // ['2012-01-01', '2012-01-02', ...], where the input\n // data has been ensured not duplicate and is large data.\n // null means \"auto\":\n // if axis.data provided, do not deduplication,\n // else do deduplication.\n deduplication: null,\n // splitArea: {\n // show: false\n // },\n splitLine: {\n show: false\n },\n axisTick: {\n // If tick is align with label when boundaryGap is true\n alignWithLabel: false,\n interval: 'auto'\n },\n axisLabel: {\n interval: 'auto'\n }\n}, defaultOption);\naxisDefault.valueAxis = zrUtil.merge({\n // The gap at both ends of the axis. For value axis, [GAP, GAP], where\n // `GAP` can be an absolute pixel number (like `35`), or percent (like `'30%'`)\n boundaryGap: [0, 0],\n // TODO\n // min/max: [30, datamin, 60] or [20, datamin] or [datamin, 60]\n // Min value of the axis. can be:\n // + a number\n // + 'dataMin': use the min value in data.\n // + null/undefined: auto decide min value (consider pretty look and boundaryGap).\n // min: null,\n // Max value of the axis. can be:\n // + a number\n // + 'dataMax': use the max value in data.\n // + null/undefined: auto decide max value (consider pretty look and boundaryGap).\n // max: null,\n // Readonly prop, specifies start value of the range when using data zoom.\n // rangeStart: null\n // Readonly prop, specifies end value of the range when using data zoom.\n // rangeEnd: null\n // Optional value can be:\n // + `false`: always include value 0.\n // + `true`: the extent do not consider value 0.\n // scale: false,\n // AxisTick and axisLabel and splitLine are caculated based on splitNumber.\n splitNumber: 5,\n // Interval specifies the span of the ticks is mandatorily.\n // interval: null\n // Specify min interval when auto calculate tick interval.\n // minInterval: null\n // Specify max interval when auto calculate tick interval.\n // maxInterval: null\n minorTick: {\n // Minor tick, not available for cateogry axis.\n show: false,\n // Split number of minor ticks. The value should be in range of (0, 100)\n splitNumber: 5,\n // Lenght of minor tick\n length: 3,\n // Same inside with axisTick\n // Line style\n lineStyle: {// Default to be same with axisTick\n }\n },\n minorSplitLine: {\n show: false,\n lineStyle: {\n color: '#eee',\n width: 1\n }\n }\n}, defaultOption);\naxisDefault.timeAxis = zrUtil.defaults({\n scale: true,\n min: 'dataMin',\n max: 'dataMax'\n}, axisDefault.valueAxis);\naxisDefault.logAxis = zrUtil.defaults({\n scale: true,\n logBase: 10\n}, axisDefault.valueAxis);\nvar _default = axisDefault;\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 zrUtil = require(\"zrender/lib/core/util\");\n\nvar axisDefault = require(\"./axisDefault\");\n\nvar ComponentModel = require(\"../model/Component\");\n\nvar _layout = require(\"../util/layout\");\n\nvar getLayoutParams = _layout.getLayoutParams;\nvar mergeLayoutParam = _layout.mergeLayoutParam;\n\nvar OrdinalMeta = require(\"../data/OrdinalMeta\");\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// FIXME axisType is fixed ?\nvar AXIS_TYPES = ['value', 'category', 'time', 'log'];\n/**\n * Generate sub axis model class\n * @param {string} axisName 'x' 'y' 'radius' 'angle' 'parallel'\n * @param {module:echarts/model/Component} BaseAxisModelClass\n * @param {Function} axisTypeDefaulter\n * @param {Object} [extraDefaultOption]\n */\n\nfunction _default(axisName, BaseAxisModelClass, axisTypeDefaulter, extraDefaultOption) {\n zrUtil.each(AXIS_TYPES, function (axisType) {\n BaseAxisModelClass.extend({\n /**\n * @readOnly\n */\n type: axisName + 'Axis.' + axisType,\n mergeDefaultAndTheme: function (option, ecModel) {\n var layoutMode = this.layoutMode;\n var inputPositionParams = layoutMode ? getLayoutParams(option) : {};\n var themeModel = ecModel.getTheme();\n zrUtil.merge(option, themeModel.get(axisType + 'Axis'));\n zrUtil.merge(option, this.getDefaultOption());\n option.type = axisTypeDefaulter(axisName, option);\n\n if (layoutMode) {\n mergeLayoutParam(option, inputPositionParams, layoutMode);\n }\n },\n\n /**\n * @override\n */\n optionUpdated: function () {\n var thisOption = this.option;\n\n if (thisOption.type === 'category') {\n this.__ordinalMeta = OrdinalMeta.createByAxisModel(this);\n }\n },\n\n /**\n * Should not be called before all of 'getInitailData' finished.\n * Because categories are collected during initializing data.\n */\n getCategories: function (rawData) {\n var option = this.option; // FIXME\n // warning if called before all of 'getInitailData' finished.\n\n if (option.type === 'category') {\n if (rawData) {\n return option.data;\n }\n\n return this.__ordinalMeta.categories;\n }\n },\n getOrdinalMeta: function () {\n return this.__ordinalMeta;\n },\n defaultOption: zrUtil.mergeAll([{}, axisDefault[axisType + 'Axis'], extraDefaultOption], true)\n });\n });\n ComponentModel.registerSubTypeDefaulter(axisName + 'Axis', zrUtil.curry(axisTypeDefaulter, axisName));\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 zrUtil = require(\"zrender/lib/core/util\");\n\nvar ComponentModel = require(\"../../model/Component\");\n\nvar axisModelCreator = require(\"../axisModelCreator\");\n\nvar axisModelCommonMixin = require(\"../axisModelCommonMixin\");\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 AxisModel = ComponentModel.extend({\n type: 'cartesian2dAxis',\n\n /**\n * @type {module:echarts/coord/cartesian/Axis2D}\n */\n axis: null,\n\n /**\n * @override\n */\n init: function () {\n AxisModel.superApply(this, 'init', arguments);\n this.resetRange();\n },\n\n /**\n * @override\n */\n mergeOption: function () {\n AxisModel.superApply(this, 'mergeOption', arguments);\n this.resetRange();\n },\n\n /**\n * @override\n */\n restoreData: function () {\n AxisModel.superApply(this, 'restoreData', arguments);\n this.resetRange();\n },\n\n /**\n * @override\n * @return {module:echarts/model/Component}\n */\n getCoordSysModel: function () {\n return this.ecModel.queryComponents({\n mainType: 'grid',\n index: this.option.gridIndex,\n id: this.option.gridId\n })[0];\n }\n});\n\nfunction getAxisType(axisDim, option) {\n // Default axis with data is category axis\n return option.type || (option.data ? 'category' : 'value');\n}\n\nzrUtil.merge(AxisModel.prototype, axisModelCommonMixin);\nvar extraOption = {\n // gridIndex: 0,\n // gridId: '',\n // Offset is for multiple axis on the same position\n offset: 0\n};\naxisModelCreator('x', AxisModel, getAxisType, extraOption);\naxisModelCreator('y', AxisModel, getAxisType, extraOption);\nvar _default = AxisModel;\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\nrequire(\"./AxisModel\");\n\nvar ComponentModel = require(\"../../model/Component\");\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// Grid 是在有直角坐标系的时候必须要存在的\n// 所以这里也要被 Cartesian2D 依赖\nvar _default = ComponentModel.extend({\n type: 'grid',\n dependencies: ['xAxis', 'yAxis'],\n layoutMode: 'box',\n\n /**\n * @type {module:echarts/coord/cartesian/Grid}\n */\n coordinateSystem: null,\n defaultOption: {\n show: false,\n zlevel: 0,\n z: 0,\n left: '10%',\n top: 60,\n right: '10%',\n bottom: 60,\n // If grid size contain label\n containLabel: false,\n // width: {totalWidth} - left - right,\n // height: {totalHeight} - top - bottom,\n backgroundColor: 'rgba(0,0,0,0)',\n borderWidth: 1,\n borderColor: '#ccc'\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 _util = require(\"zrender/lib/core/util\");\n\nvar isObject = _util.isObject;\nvar each = _util.each;\nvar map = _util.map;\nvar indexOf = _util.indexOf;\nvar retrieve = _util.retrieve;\n\nvar _layout = require(\"../../util/layout\");\n\nvar getLayoutRect = _layout.getLayoutRect;\n\nvar _axisHelper = require(\"../../coord/axisHelper\");\n\nvar createScaleByModel = _axisHelper.createScaleByModel;\nvar ifAxisCrossZero = _axisHelper.ifAxisCrossZero;\nvar niceScaleExtent = _axisHelper.niceScaleExtent;\nvar estimateLabelUnionRect = _axisHelper.estimateLabelUnionRect;\n\nvar Cartesian2D = require(\"./Cartesian2D\");\n\nvar Axis2D = require(\"./Axis2D\");\n\nvar CoordinateSystem = require(\"../../CoordinateSystem\");\n\nvar _dataStackHelper = require(\"../../data/helper/dataStackHelper\");\n\nvar getStackedDimension = _dataStackHelper.getStackedDimension;\n\nrequire(\"./GridModel\");\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 * Grid is a region which contains at most 4 cartesian systems\n *\n * TODO Default cartesian\n */\n// Depends on GridModel, AxisModel, which performs preprocess.\n\n/**\n * Check if the axis is used in the specified grid\n * @inner\n */\nfunction isAxisUsedInTheGrid(axisModel, gridModel, ecModel) {\n return axisModel.getCoordSysModel() === gridModel;\n}\n\nfunction Grid(gridModel, ecModel, api) {\n /**\n * @type {Object.}\n * @private\n */\n this._coordsMap = {};\n /**\n * @type {Array.}\n * @private\n */\n\n this._coordsList = [];\n /**\n * @type {Object.>}\n * @private\n */\n\n this._axesMap = {};\n /**\n * @type {Array.}\n * @private\n */\n\n this._axesList = [];\n\n this._initCartesian(gridModel, ecModel, api);\n\n this.model = gridModel;\n}\n\nvar gridProto = Grid.prototype;\ngridProto.type = 'grid';\ngridProto.axisPointerEnabled = true;\n\ngridProto.getRect = function () {\n return this._rect;\n};\n\ngridProto.update = function (ecModel, api) {\n var axesMap = this._axesMap;\n\n this._updateScale(ecModel, this.model);\n\n each(axesMap.x, function (xAxis) {\n niceScaleExtent(xAxis.scale, xAxis.model);\n });\n each(axesMap.y, function (yAxis) {\n niceScaleExtent(yAxis.scale, yAxis.model);\n }); // Key: axisDim_axisIndex, value: boolean, whether onZero target.\n\n var onZeroRecords = {};\n each(axesMap.x, function (xAxis) {\n fixAxisOnZero(axesMap, 'y', xAxis, onZeroRecords);\n });\n each(axesMap.y, function (yAxis) {\n fixAxisOnZero(axesMap, 'x', yAxis, onZeroRecords);\n }); // Resize again if containLabel is enabled\n // FIXME It may cause getting wrong grid size in data processing stage\n\n this.resize(this.model, api);\n};\n\nfunction fixAxisOnZero(axesMap, otherAxisDim, axis, onZeroRecords) {\n axis.getAxesOnZeroOf = function () {\n // TODO: onZero of multiple axes.\n return otherAxisOnZeroOf ? [otherAxisOnZeroOf] : [];\n }; // onZero can not be enabled in these two situations:\n // 1. When any other axis is a category axis.\n // 2. When no axis is cross 0 point.\n\n\n var otherAxes = axesMap[otherAxisDim];\n var otherAxisOnZeroOf;\n var axisModel = axis.model;\n var onZero = axisModel.get('axisLine.onZero');\n var onZeroAxisIndex = axisModel.get('axisLine.onZeroAxisIndex');\n\n if (!onZero) {\n return;\n } // If target axis is specified.\n\n\n if (onZeroAxisIndex != null) {\n if (canOnZeroToAxis(otherAxes[onZeroAxisIndex])) {\n otherAxisOnZeroOf = otherAxes[onZeroAxisIndex];\n }\n } else {\n // Find the first available other axis.\n for (var idx in otherAxes) {\n if (otherAxes.hasOwnProperty(idx) && canOnZeroToAxis(otherAxes[idx]) // Consider that two Y axes on one value axis,\n // if both onZero, the two Y axes overlap.\n && !onZeroRecords[getOnZeroRecordKey(otherAxes[idx])]) {\n otherAxisOnZeroOf = otherAxes[idx];\n break;\n }\n }\n }\n\n if (otherAxisOnZeroOf) {\n onZeroRecords[getOnZeroRecordKey(otherAxisOnZeroOf)] = true;\n }\n\n function getOnZeroRecordKey(axis) {\n return axis.dim + '_' + axis.index;\n }\n}\n\nfunction canOnZeroToAxis(axis) {\n return axis && axis.type !== 'category' && axis.type !== 'time' && ifAxisCrossZero(axis);\n}\n/**\n * Resize the grid\n * @param {module:echarts/coord/cartesian/GridModel} gridModel\n * @param {module:echarts/ExtensionAPI} api\n */\n\n\ngridProto.resize = function (gridModel, api, ignoreContainLabel) {\n var gridRect = getLayoutRect(gridModel.getBoxLayoutParams(), {\n width: api.getWidth(),\n height: api.getHeight()\n });\n this._rect = gridRect;\n var axesList = this._axesList;\n adjustAxes(); // Minus label size\n\n if (!ignoreContainLabel && gridModel.get('containLabel')) {\n each(axesList, function (axis) {\n if (!axis.model.get('axisLabel.inside')) {\n var labelUnionRect = estimateLabelUnionRect(axis);\n\n if (labelUnionRect) {\n var dim = axis.isHorizontal() ? 'height' : 'width';\n var margin = axis.model.get('axisLabel.margin');\n gridRect[dim] -= labelUnionRect[dim] + margin;\n\n if (axis.position === 'top') {\n gridRect.y += labelUnionRect.height + margin;\n } else if (axis.position === 'left') {\n gridRect.x += labelUnionRect.width + margin;\n }\n }\n }\n });\n adjustAxes();\n }\n\n function adjustAxes() {\n each(axesList, function (axis) {\n var isHorizontal = axis.isHorizontal();\n var extent = isHorizontal ? [0, gridRect.width] : [0, gridRect.height];\n var idx = axis.inverse ? 1 : 0;\n axis.setExtent(extent[idx], extent[1 - idx]);\n updateAxisTransform(axis, isHorizontal ? gridRect.x : gridRect.y);\n });\n }\n};\n/**\n * @param {string} axisType\n * @param {number} [axisIndex]\n */\n\n\ngridProto.getAxis = function (axisType, axisIndex) {\n var axesMapOnDim = this._axesMap[axisType];\n\n if (axesMapOnDim != null) {\n if (axisIndex == null) {\n // Find first axis\n for (var name in axesMapOnDim) {\n if (axesMapOnDim.hasOwnProperty(name)) {\n return axesMapOnDim[name];\n }\n }\n }\n\n return axesMapOnDim[axisIndex];\n }\n};\n/**\n * @return {Array.}\n */\n\n\ngridProto.getAxes = function () {\n return this._axesList.slice();\n};\n/**\n * Usage:\n * grid.getCartesian(xAxisIndex, yAxisIndex);\n * grid.getCartesian(xAxisIndex);\n * grid.getCartesian(null, yAxisIndex);\n * grid.getCartesian({xAxisIndex: ..., yAxisIndex: ...});\n *\n * @param {number|Object} [xAxisIndex]\n * @param {number} [yAxisIndex]\n */\n\n\ngridProto.getCartesian = function (xAxisIndex, yAxisIndex) {\n if (xAxisIndex != null && yAxisIndex != null) {\n var key = 'x' + xAxisIndex + 'y' + yAxisIndex;\n return this._coordsMap[key];\n }\n\n if (isObject(xAxisIndex)) {\n yAxisIndex = xAxisIndex.yAxisIndex;\n xAxisIndex = xAxisIndex.xAxisIndex;\n } // When only xAxisIndex or yAxisIndex given, find its first cartesian.\n\n\n for (var i = 0, coordList = this._coordsList; i < coordList.length; i++) {\n if (coordList[i].getAxis('x').index === xAxisIndex || coordList[i].getAxis('y').index === yAxisIndex) {\n return coordList[i];\n }\n }\n};\n\ngridProto.getCartesians = function () {\n return this._coordsList.slice();\n};\n/**\n * @implements\n * see {module:echarts/CoodinateSystem}\n */\n\n\ngridProto.convertToPixel = function (ecModel, finder, value) {\n var target = this._findConvertTarget(ecModel, finder);\n\n return target.cartesian ? target.cartesian.dataToPoint(value) : target.axis ? target.axis.toGlobalCoord(target.axis.dataToCoord(value)) : null;\n};\n/**\n * @implements\n * see {module:echarts/CoodinateSystem}\n */\n\n\ngridProto.convertFromPixel = function (ecModel, finder, value) {\n var target = this._findConvertTarget(ecModel, finder);\n\n return target.cartesian ? target.cartesian.pointToData(value) : target.axis ? target.axis.coordToData(target.axis.toLocalCoord(value)) : null;\n};\n/**\n * @inner\n */\n\n\ngridProto._findConvertTarget = function (ecModel, finder) {\n var seriesModel = finder.seriesModel;\n var xAxisModel = finder.xAxisModel || seriesModel && seriesModel.getReferringComponents('xAxis')[0];\n var yAxisModel = finder.yAxisModel || seriesModel && seriesModel.getReferringComponents('yAxis')[0];\n var gridModel = finder.gridModel;\n var coordsList = this._coordsList;\n var cartesian;\n var axis;\n\n if (seriesModel) {\n cartesian = seriesModel.coordinateSystem;\n indexOf(coordsList, cartesian) < 0 && (cartesian = null);\n } else if (xAxisModel && yAxisModel) {\n cartesian = this.getCartesian(xAxisModel.componentIndex, yAxisModel.componentIndex);\n } else if (xAxisModel) {\n axis = this.getAxis('x', xAxisModel.componentIndex);\n } else if (yAxisModel) {\n axis = this.getAxis('y', yAxisModel.componentIndex);\n } // Lowest priority.\n else if (gridModel) {\n var grid = gridModel.coordinateSystem;\n\n if (grid === this) {\n cartesian = this._coordsList[0];\n }\n }\n\n return {\n cartesian: cartesian,\n axis: axis\n };\n};\n/**\n * @implements\n * see {module:echarts/CoodinateSystem}\n */\n\n\ngridProto.containPoint = function (point) {\n var coord = this._coordsList[0];\n\n if (coord) {\n return coord.containPoint(point);\n }\n};\n/**\n * Initialize cartesian coordinate systems\n * @private\n */\n\n\ngridProto._initCartesian = function (gridModel, ecModel, api) {\n var axisPositionUsed = {\n left: false,\n right: false,\n top: false,\n bottom: false\n };\n var axesMap = {\n x: {},\n y: {}\n };\n var axesCount = {\n x: 0,\n y: 0\n }; /// Create axis\n\n ecModel.eachComponent('xAxis', createAxisCreator('x'), this);\n ecModel.eachComponent('yAxis', createAxisCreator('y'), this);\n\n if (!axesCount.x || !axesCount.y) {\n // Roll back when there no either x or y axis\n this._axesMap = {};\n this._axesList = [];\n return;\n }\n\n this._axesMap = axesMap; /// Create cartesian2d\n\n each(axesMap.x, function (xAxis, xAxisIndex) {\n each(axesMap.y, function (yAxis, yAxisIndex) {\n var key = 'x' + xAxisIndex + 'y' + yAxisIndex;\n var cartesian = new Cartesian2D(key);\n cartesian.grid = this;\n cartesian.model = gridModel;\n this._coordsMap[key] = cartesian;\n\n this._coordsList.push(cartesian);\n\n cartesian.addAxis(xAxis);\n cartesian.addAxis(yAxis);\n }, this);\n }, this);\n\n function createAxisCreator(axisType) {\n return function (axisModel, idx) {\n if (!isAxisUsedInTheGrid(axisModel, gridModel, ecModel)) {\n return;\n }\n\n var axisPosition = axisModel.get('position');\n\n if (axisType === 'x') {\n // Fix position\n if (axisPosition !== 'top' && axisPosition !== 'bottom') {\n // Default bottom of X\n axisPosition = axisPositionUsed.bottom ? 'top' : 'bottom';\n }\n } else {\n // Fix position\n if (axisPosition !== 'left' && axisPosition !== 'right') {\n // Default left of Y\n axisPosition = axisPositionUsed.left ? 'right' : 'left';\n }\n }\n\n axisPositionUsed[axisPosition] = true;\n var axis = new Axis2D(axisType, createScaleByModel(axisModel), [0, 0], axisModel.get('type'), axisPosition);\n var isCategory = axis.type === 'category';\n axis.onBand = isCategory && axisModel.get('boundaryGap');\n axis.inverse = axisModel.get('inverse'); // Inject axis into axisModel\n\n axisModel.axis = axis; // Inject axisModel into axis\n\n axis.model = axisModel; // Inject grid info axis\n\n axis.grid = this; // Index of axis, can be used as key\n\n axis.index = idx;\n\n this._axesList.push(axis);\n\n axesMap[axisType][idx] = axis;\n axesCount[axisType]++;\n };\n }\n};\n/**\n * Update cartesian properties from series\n * @param {module:echarts/model/Option} option\n * @private\n */\n\n\ngridProto._updateScale = function (ecModel, gridModel) {\n // Reset scale\n each(this._axesList, function (axis) {\n axis.scale.setExtent(Infinity, -Infinity);\n });\n ecModel.eachSeries(function (seriesModel) {\n if (isCartesian2D(seriesModel)) {\n var axesModels = findAxesModels(seriesModel, ecModel);\n var xAxisModel = axesModels[0];\n var yAxisModel = axesModels[1];\n\n if (!isAxisUsedInTheGrid(xAxisModel, gridModel, ecModel) || !isAxisUsedInTheGrid(yAxisModel, gridModel, ecModel)) {\n return;\n }\n\n var cartesian = this.getCartesian(xAxisModel.componentIndex, yAxisModel.componentIndex);\n var data = seriesModel.getData();\n var xAxis = cartesian.getAxis('x');\n var yAxis = cartesian.getAxis('y');\n\n if (data.type === 'list') {\n unionExtent(data, xAxis, seriesModel);\n unionExtent(data, yAxis, seriesModel);\n }\n }\n }, this);\n\n function unionExtent(data, axis, seriesModel) {\n each(data.mapDimension(axis.dim, true), function (dim) {\n axis.scale.unionExtentFromData( // For example, the extent of the orginal dimension\n // is [0.1, 0.5], the extent of the `stackResultDimension`\n // is [7, 9], the final extent should not include [0.1, 0.5].\n data, getStackedDimension(data, dim));\n });\n }\n};\n/**\n * @param {string} [dim] 'x' or 'y' or 'auto' or null/undefined\n * @return {Object} {baseAxes: [], otherAxes: []}\n */\n\n\ngridProto.getTooltipAxes = function (dim) {\n var baseAxes = [];\n var otherAxes = [];\n each(this.getCartesians(), function (cartesian) {\n var baseAxis = dim != null && dim !== 'auto' ? cartesian.getAxis(dim) : cartesian.getBaseAxis();\n var otherAxis = cartesian.getOtherAxis(baseAxis);\n indexOf(baseAxes, baseAxis) < 0 && baseAxes.push(baseAxis);\n indexOf(otherAxes, otherAxis) < 0 && otherAxes.push(otherAxis);\n });\n return {\n baseAxes: baseAxes,\n otherAxes: otherAxes\n };\n};\n/**\n * @inner\n */\n\n\nfunction updateAxisTransform(axis, coordBase) {\n var axisExtent = axis.getExtent();\n var axisExtentSum = axisExtent[0] + axisExtent[1]; // Fast transform\n\n axis.toGlobalCoord = axis.dim === 'x' ? function (coord) {\n return coord + coordBase;\n } : function (coord) {\n return axisExtentSum - coord + coordBase;\n };\n axis.toLocalCoord = axis.dim === 'x' ? function (coord) {\n return coord - coordBase;\n } : function (coord) {\n return axisExtentSum - coord + coordBase;\n };\n}\n\nvar axesTypes = ['xAxis', 'yAxis'];\n/**\n * @inner\n */\n\nfunction findAxesModels(seriesModel, ecModel) {\n return map(axesTypes, function (axisType) {\n var axisModel = seriesModel.getReferringComponents(axisType)[0];\n return axisModel;\n });\n}\n/**\n * @inner\n */\n\n\nfunction isCartesian2D(seriesModel) {\n return seriesModel.get('coordinateSystem') === 'cartesian2d';\n}\n\nGrid.create = function (ecModel, api) {\n var grids = [];\n ecModel.eachComponent('grid', function (gridModel, idx) {\n var grid = new Grid(gridModel, ecModel, api);\n grid.name = 'grid_' + idx; // dataSampling requires axis extent, so resize\n // should be performed in create stage.\n\n grid.resize(gridModel, api, true);\n gridModel.coordinateSystem = grid;\n grids.push(grid);\n }); // Inject the coordinateSystems into seriesModel\n\n ecModel.eachSeries(function (seriesModel) {\n if (!isCartesian2D(seriesModel)) {\n return;\n }\n\n var axesModels = findAxesModels(seriesModel, ecModel);\n var xAxisModel = axesModels[0];\n var yAxisModel = axesModels[1];\n var gridModel = xAxisModel.getCoordSysModel();\n var grid = gridModel.coordinateSystem;\n seriesModel.coordinateSystem = grid.getCartesian(xAxisModel.componentIndex, yAxisModel.componentIndex);\n });\n return grids;\n}; // For deciding which dimensions to use when creating list data\n\n\nGrid.dimensions = Grid.prototype.dimensions = Cartesian2D.prototype.dimensions;\nCoordinateSystem.register('cartesian2d', Grid);\nvar _default = Grid;\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 zrUtil = require(\"zrender/lib/core/util\");\n\nvar graphic = require(\"../../util/graphic\");\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 rectCoordAxisBuildSplitArea(axisView, axisGroup, axisModel, gridModel) {\n var axis = axisModel.axis;\n\n if (axis.scale.isBlank()) {\n return;\n }\n\n var splitAreaModel = axisModel.getModel('splitArea');\n var areaStyleModel = splitAreaModel.getModel('areaStyle');\n var areaColors = areaStyleModel.get('color');\n var gridRect = gridModel.coordinateSystem.getRect();\n var ticksCoords = axis.getTicksCoords({\n tickModel: splitAreaModel,\n clamp: true\n });\n\n if (!ticksCoords.length) {\n return;\n } // For Making appropriate splitArea animation, the color and anid\n // should be corresponding to previous one if possible.\n\n\n var areaColorsLen = areaColors.length;\n var lastSplitAreaColors = axisView.__splitAreaColors;\n var newSplitAreaColors = zrUtil.createHashMap();\n var colorIndex = 0;\n\n if (lastSplitAreaColors) {\n for (var i = 0; i < ticksCoords.length; i++) {\n var cIndex = lastSplitAreaColors.get(ticksCoords[i].tickValue);\n\n if (cIndex != null) {\n colorIndex = (cIndex + (areaColorsLen - 1) * i) % areaColorsLen;\n break;\n }\n }\n }\n\n var prev = axis.toGlobalCoord(ticksCoords[0].coord);\n var areaStyle = areaStyleModel.getAreaStyle();\n areaColors = zrUtil.isArray(areaColors) ? areaColors : [areaColors];\n\n for (var i = 1; i < ticksCoords.length; i++) {\n var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord);\n var x;\n var y;\n var width;\n var height;\n\n if (axis.isHorizontal()) {\n x = prev;\n y = gridRect.y;\n width = tickCoord - x;\n height = gridRect.height;\n prev = x + width;\n } else {\n x = gridRect.x;\n y = prev;\n width = gridRect.width;\n height = tickCoord - y;\n prev = y + height;\n }\n\n var tickValue = ticksCoords[i - 1].tickValue;\n tickValue != null && newSplitAreaColors.set(tickValue, colorIndex);\n axisGroup.add(new graphic.Rect({\n anid: tickValue != null ? 'area_' + tickValue : null,\n shape: {\n x: x,\n y: y,\n width: width,\n height: height\n },\n style: zrUtil.defaults({\n fill: areaColors[colorIndex]\n }, areaStyle),\n silent: true\n }));\n colorIndex = (colorIndex + 1) % areaColorsLen;\n }\n\n axisView.__splitAreaColors = newSplitAreaColors;\n}\n\nfunction rectCoordAxisHandleRemove(axisView) {\n axisView.__splitAreaColors = null;\n}\n\nexports.rectCoordAxisBuildSplitArea = rectCoordAxisBuildSplitArea;\nexports.rectCoordAxisHandleRemove = rectCoordAxisHandleRemove;","\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 zrUtil = require(\"zrender/lib/core/util\");\n\nvar graphic = require(\"../../util/graphic\");\n\nvar AxisBuilder = require(\"./AxisBuilder\");\n\nvar AxisView = require(\"./AxisView\");\n\nvar cartesianAxisHelper = require(\"../../coord/cartesian/cartesianAxisHelper\");\n\nvar _axisSplitHelper = require(\"./axisSplitHelper\");\n\nvar rectCoordAxisBuildSplitArea = _axisSplitHelper.rectCoordAxisBuildSplitArea;\nvar rectCoordAxisHandleRemove = _axisSplitHelper.rectCoordAxisHandleRemove;\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 axisBuilderAttrs = ['axisLine', 'axisTickLabel', 'axisName'];\nvar selfBuilderAttrs = ['splitArea', 'splitLine', 'minorSplitLine'];\nvar CartesianAxisView = AxisView.extend({\n type: 'cartesianAxis',\n axisPointerClass: 'CartesianAxisPointer',\n\n /**\n * @override\n */\n render: function (axisModel, ecModel, api, payload) {\n this.group.removeAll();\n var oldAxisGroup = this._axisGroup;\n this._axisGroup = new graphic.Group();\n this.group.add(this._axisGroup);\n\n if (!axisModel.get('show')) {\n return;\n }\n\n var gridModel = axisModel.getCoordSysModel();\n var layout = cartesianAxisHelper.layout(gridModel, axisModel);\n var axisBuilder = new AxisBuilder(axisModel, layout);\n zrUtil.each(axisBuilderAttrs, axisBuilder.add, axisBuilder);\n\n this._axisGroup.add(axisBuilder.getGroup());\n\n zrUtil.each(selfBuilderAttrs, function (name) {\n if (axisModel.get(name + '.show')) {\n this['_' + name](axisModel, gridModel);\n }\n }, this);\n graphic.groupTransition(oldAxisGroup, this._axisGroup, axisModel);\n CartesianAxisView.superCall(this, 'render', axisModel, ecModel, api, payload);\n },\n remove: function () {\n rectCoordAxisHandleRemove(this);\n },\n\n /**\n * @param {module:echarts/coord/cartesian/AxisModel} axisModel\n * @param {module:echarts/coord/cartesian/GridModel} gridModel\n * @private\n */\n _splitLine: function (axisModel, gridModel) {\n var axis = axisModel.axis;\n\n if (axis.scale.isBlank()) {\n return;\n }\n\n var splitLineModel = axisModel.getModel('splitLine');\n var lineStyleModel = splitLineModel.getModel('lineStyle');\n var lineColors = lineStyleModel.get('color');\n lineColors = zrUtil.isArray(lineColors) ? lineColors : [lineColors];\n var gridRect = gridModel.coordinateSystem.getRect();\n var isHorizontal = axis.isHorizontal();\n var lineCount = 0;\n var ticksCoords = axis.getTicksCoords({\n tickModel: splitLineModel\n });\n var p1 = [];\n var p2 = [];\n var lineStyle = lineStyleModel.getLineStyle();\n\n for (var i = 0; i < ticksCoords.length; i++) {\n var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord);\n\n if (isHorizontal) {\n p1[0] = tickCoord;\n p1[1] = gridRect.y;\n p2[0] = tickCoord;\n p2[1] = gridRect.y + gridRect.height;\n } else {\n p1[0] = gridRect.x;\n p1[1] = tickCoord;\n p2[0] = gridRect.x + gridRect.width;\n p2[1] = tickCoord;\n }\n\n var colorIndex = lineCount++ % lineColors.length;\n var tickValue = ticksCoords[i].tickValue;\n\n this._axisGroup.add(new graphic.Line({\n anid: tickValue != null ? 'line_' + ticksCoords[i].tickValue : null,\n subPixelOptimize: true,\n shape: {\n x1: p1[0],\n y1: p1[1],\n x2: p2[0],\n y2: p2[1]\n },\n style: zrUtil.defaults({\n stroke: lineColors[colorIndex]\n }, lineStyle),\n silent: true\n }));\n }\n },\n\n /**\n * @param {module:echarts/coord/cartesian/AxisModel} axisModel\n * @param {module:echarts/coord/cartesian/GridModel} gridModel\n * @private\n */\n _minorSplitLine: function (axisModel, gridModel) {\n var axis = axisModel.axis;\n var minorSplitLineModel = axisModel.getModel('minorSplitLine');\n var lineStyleModel = minorSplitLineModel.getModel('lineStyle');\n var gridRect = gridModel.coordinateSystem.getRect();\n var isHorizontal = axis.isHorizontal();\n var minorTicksCoords = axis.getMinorTicksCoords();\n\n if (!minorTicksCoords.length) {\n return;\n }\n\n var p1 = [];\n var p2 = [];\n var lineStyle = lineStyleModel.getLineStyle();\n\n for (var i = 0; i < minorTicksCoords.length; i++) {\n for (var k = 0; k < minorTicksCoords[i].length; k++) {\n var tickCoord = axis.toGlobalCoord(minorTicksCoords[i][k].coord);\n\n if (isHorizontal) {\n p1[0] = tickCoord;\n p1[1] = gridRect.y;\n p2[0] = tickCoord;\n p2[1] = gridRect.y + gridRect.height;\n } else {\n p1[0] = gridRect.x;\n p1[1] = tickCoord;\n p2[0] = gridRect.x + gridRect.width;\n p2[1] = tickCoord;\n }\n\n this._axisGroup.add(new graphic.Line({\n anid: 'minor_line_' + minorTicksCoords[i][k].tickValue,\n subPixelOptimize: true,\n shape: {\n x1: p1[0],\n y1: p1[1],\n x2: p2[0],\n y2: p2[1]\n },\n style: lineStyle,\n silent: true\n }));\n }\n }\n },\n\n /**\n * @param {module:echarts/coord/cartesian/AxisModel} axisModel\n * @param {module:echarts/coord/cartesian/GridModel} gridModel\n * @private\n */\n _splitArea: function (axisModel, gridModel) {\n rectCoordAxisBuildSplitArea(this, this._axisGroup, axisModel, gridModel);\n }\n});\nCartesianAxisView.extend({\n type: 'xAxis'\n});\nCartesianAxisView.extend({\n type: 'yAxis'\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\nvar echarts = require(\"../echarts\");\n\nvar zrUtil = require(\"zrender/lib/core/util\");\n\nvar graphic = require(\"../util/graphic\");\n\nrequire(\"../coord/cartesian/Grid\");\n\nrequire(\"./axis\");\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// Grid view\necharts.extendComponentView({\n type: 'grid',\n render: function (gridModel, ecModel) {\n this.group.removeAll();\n\n if (gridModel.get('show')) {\n this.group.add(new graphic.Rect({\n shape: gridModel.coordinateSystem.getRect(),\n style: zrUtil.defaults({\n fill: gridModel.get('backgroundColor')\n }, gridModel.getItemStyle()),\n silent: true,\n z2: -1\n }));\n }\n }\n});\necharts.registerPreprocessor(function (option) {\n // Only create grid when need\n if (option.xAxis && option.yAxis && !option.grid) {\n option.grid = {};\n }\n});"],"names":["zrUtil","require$$0","dimAxisMapper","dim","Cartesian","name","scaleType","axis","val","input","method","dimList","output","i","_default","Cartesian_1","BoundingRect","require$$1","require$$2","Cartesian2D","point","axisX","axisY","data","reserved","out","xAxis","yAxis","xScale","yScale","xAxisExtent","yAxisExtent","x","y","xExtent","yExtent","width","height","rect","Cartesian2D_1","Axis","Axis2D","scale","coordExtent","axisType","position","asc","ret","clamp","Axis2D_1","defaultOption","axisDefault","axisDefault_1","ComponentModel","_layout","require$$3","getLayoutParams","mergeLayoutParam","OrdinalMeta","require$$4","AXIS_TYPES","axisName","BaseAxisModelClass","axisTypeDefaulter","extraDefaultOption","option","ecModel","layoutMode","inputPositionParams","themeModel","thisOption","rawData","axisModelCreator","axisModelCommonMixin","AxisModel","getAxisType","axisDim","extraOption","_util","isObject","each","map","indexOf","getLayoutRect","_axisHelper","createScaleByModel","ifAxisCrossZero","niceScaleExtent","estimateLabelUnionRect","require$$5","CoordinateSystem","require$$6","_dataStackHelper","require$$7","getStackedDimension","isAxisUsedInTheGrid","axisModel","gridModel","Grid","api","gridProto","axesMap","onZeroRecords","fixAxisOnZero","otherAxisDim","otherAxisOnZeroOf","otherAxes","onZero","onZeroAxisIndex","canOnZeroToAxis","idx","getOnZeroRecordKey","ignoreContainLabel","gridRect","axesList","adjustAxes","labelUnionRect","margin","isHorizontal","extent","updateAxisTransform","axisIndex","axesMapOnDim","xAxisIndex","yAxisIndex","key","coordList","finder","value","target","seriesModel","xAxisModel","yAxisModel","coordsList","cartesian","grid","coord","axisPositionUsed","axesCount","createAxisCreator","axisPosition","isCategory","isCartesian2D","axesModels","findAxesModels","unionExtent","baseAxes","baseAxis","otherAxis","coordBase","axisExtent","axisExtentSum","axesTypes","grids","graphic","rectCoordAxisBuildSplitArea","axisView","axisGroup","splitAreaModel","areaStyleModel","areaColors","ticksCoords","areaColorsLen","lastSplitAreaColors","newSplitAreaColors","colorIndex","cIndex","prev","areaStyle","tickCoord","tickValue","rectCoordAxisHandleRemove","axisSplitHelper","AxisBuilder","AxisView","cartesianAxisHelper","_axisSplitHelper","axisBuilderAttrs","selfBuilderAttrs","CartesianAxisView","payload","oldAxisGroup","layout","axisBuilder","splitLineModel","lineStyleModel","lineColors","lineCount","p1","p2","lineStyle","minorSplitLineModel","minorTicksCoords","k","echarts"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10]}