Releases: erdogant/d3graph
Releases · erdogant/d3graph
v2.3.9
- added on click functionality. With the
click
input parameter, nodes can be highlighted.
from d3graph import d3graph
d3 = d3graph()
adjmat, df = d3.import_example('karate')
d3.graph(adjmat, color='cluster')
# Specify click event
html = d3.show(click={'fill': 'green', 'stroke': 'black', 'size': 2, 'stroke-width': 2})
# No event
html = d3.show(click=None)
v2.3.8
v2.3.7
v2.3.6
v2.3.5
v2.3.4
v2.3.3
v2.3.2
- Added functionality to hide the slider in output HTML
More information can be found in the documentation.
v2.3.1
v2.3.0
- New feature: Different edge markers (circle, arrow, square, stub) can now be set for marker_end.
- Name convention:
Input
parameter hover is changed intotooltip
- Catches more errors, improved logger information, code cleaning and refactoring.
Checkout the documentation pages for more information about edge markers.