* Set hover style (namely "emphasis style") of element, * based on the current style of the given `el`. * * (1) * **CONSTRAINTS** for this method: * This method MUST be called after all of the normal styles having been adopted * to the `el`. * The input `hoverStyle` (that is, "emphasi
(el, hoverStyle)
| 17368 | * @param {Object|boolean} [hoverStyle] See `graphic.setElementHoverStyle`. |
| 17369 | */ |
| 17370 | function setHoverStyle(el, hoverStyle) { |
| 17371 | setAsHighDownDispatcher(el, true); |
| 17372 | traverseUpdate(el, setElementHoverStyle, hoverStyle); |
| 17373 | } |
| 17374 | |
| 17375 | /** |
| 17376 | * @param {module:zrender/Element} el |
no test coverage detected