(optionWrapA, optionWrapB)
| 106 | transition: transitionOpt |
| 107 | }); |
| 108 | function findCommonDimension(optionWrapA, optionWrapB) { |
| 109 | var metaA = getMapValue(dataMeta, optionWrapA.dataMetaKey); |
| 110 | var metaB = getMapValue(dataMeta, optionWrapB.dataMetaKey); |
| 111 | var uniqueDimensionB = metaB.uniqueDimension; |
| 112 | if (uniqueDimensionB != null && metaA.dimensions.indexOf(uniqueDimensionB) >= 0) { |
| 113 | return { |
| 114 | uniqueDimension: uniqueDimensionB, |
| 115 | dividingMethod: metaB.dividingMethod |
| 116 | }; |
| 117 | } |
| 118 | } |
| 119 | }; |
| 120 | SimpleOptionPlayer.prototype._getChart = function () { |
| 121 | return isFunction(this._chart) ? this._chart() : this._chart; |
no test coverage detected
searching dependent graphs…