(option: Dictionary<any>)
| 106 | } |
| 107 | |
| 108 | function compatSunburstState(option: Dictionary<any>) { |
| 109 | if (!option) { |
| 110 | return; |
| 111 | } |
| 112 | if (option.downplay && !option.blur) { |
| 113 | option.blur = option.downplay; |
| 114 | if (__DEV__) { |
| 115 | deprecateReplaceLog('downplay', 'blur', 'sunburst'); |
| 116 | } |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | function compatGraphFocus(option: Dictionary<any>) { |
| 121 | if (!option) { |
no test coverage detected
searching dependent graphs…