We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In setNode you can add "class" for a css class in
g.setNode('A', { class: 'myclass' }); <g class="node myclass">
In setEdge you can add "class" for a css class in
g.setEdge('A', 'B', { class: 'myclass' }); <g class="edgePath myclass">
But how I can add a class for the "label" of a edge?
g.setEdge('A', 'B', { ??????????: 'myclass' }); <g class="edgeLabel myclass">
I found only "labelStyle" in setEdge.
The text was updated successfully, but these errors were encountered:
added custom css class on edge labels
b84438c
It should fix dagrejs#195
Successfully merging a pull request may close this issue.
In setNode you can add "class" for a css class in
In setEdge you can add "class" for a css class in
But how I can add a class for the "label" of a edge?
I found only "labelStyle" in setEdge.
The text was updated successfully, but these errors were encountered: