(opt: Dictionary<any>)
| 108 | } |
| 109 | |
| 110 | function removeEC3NormalStatus(opt: Dictionary<any>) { |
| 111 | convertNormalEmphasis(opt, 'itemStyle'); |
| 112 | convertNormalEmphasis(opt, 'lineStyle'); |
| 113 | convertNormalEmphasis(opt, 'areaStyle'); |
| 114 | convertNormalEmphasis(opt, 'label'); |
| 115 | convertNormalEmphasis(opt, 'labelLine'); |
| 116 | // treemap |
| 117 | convertNormalEmphasis(opt, 'upperLabel'); |
| 118 | // graph |
| 119 | convertNormalEmphasis(opt, 'edgeLabel'); |
| 120 | } |
| 121 | |
| 122 | function compatTextStyle(opt: any, propName: string) { |
| 123 | // Check whether is not object (string\null\undefined ...) |
no test coverage detected
searching dependent graphs…