(visualMapModel: ContinuousModel)
| 956 | } |
| 957 | |
| 958 | function useHoverLinkOnHandle(visualMapModel: ContinuousModel) { |
| 959 | const hoverLinkOnHandle = visualMapModel.get('hoverLinkOnHandle'); |
| 960 | return !!(hoverLinkOnHandle == null ? visualMapModel.get('realtime') : hoverLinkOnHandle); |
| 961 | } |
| 962 | |
| 963 | function getCursor(orient: Orient) { |
| 964 | return orient === 'vertical' ? 'ns-resize' : 'ew-resize'; |
no test coverage detected
searching dependent graphs…