(itemStyle: ZRStyleProps, extra: ZRStyleProps)
| 873 | } |
| 874 | |
| 875 | function applyUserPropsAfter(itemStyle: ZRStyleProps, extra: ZRStyleProps): void { |
| 876 | for (const key in extra) { |
| 877 | if (hasOwn(extra, key)) { |
| 878 | (itemStyle as any)[key] = (extra as any)[key]; |
| 879 | } |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | function preFetchFromExtra(extra: ZRStyleProps, itemStyle: ItemStyleProps): void { |
| 884 | // A trick to retrieve those props firstly, which are used to |
no test coverage detected
searching dependent graphs…