Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect type for onMouseOverNode & onMosueOutNode callback #528

Open
JadeJDoucet opened this issue Jun 15, 2022 · 0 comments
Open

Incorrect type for onMouseOverNode & onMosueOutNode callback #528

JadeJDoucet opened this issue Jun 15, 2022 · 0 comments

Comments

@JadeJDoucet
Copy link

JadeJDoucet commented Jun 15, 2022

Describe the bug
The type expected for the callback passed to onMouseOverNode is
onMouseOverNode: (nodeId: string) => void;
but should be updated to
onMouseOverNode: (nodeId: string, node: GraphNode) => void;

**From Documentation: **

const onMouseOverNode = function(nodeId, node) {
     window.alert(`Mouse over node ${nodeId} in position (${node.x}, ${node.y})`);
};
@JadeJDoucet JadeJDoucet changed the title Incorrect type for onMouseOverNode callback Incorrect type for onMouseOverNode & onMosueOutNode callback Jun 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant