Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@

## New features

* Add `GraphWidget` methods to change render options in place without re-rendering: `set_layout`, `set_zoom`, `set_pan`, `set_renderer`, and `set_show_layout_button`
* Add `GraphWidget` methods to change styling in place without re-rendering such as `color_relationships`

## Bug fixes

## Improvements

* Support Aura Graph Analytics
* Support `gds.v2` endpoints
* Use typed options field in `GraphWidget`

## Other changes
2 changes: 2 additions & 0 deletions docs/source/api-reference/widget.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.. autoclass:: neo4j_viz.GraphWidget
:members:
1,727 changes: 73 additions & 1,654 deletions examples/getting-started.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ py-style:
./scripts/makestyle.sh && ./scripts/checkstyle.sh

py-test:
cd python-wrapper && uv sync --all-extras --group dev
cd python-wrapper && uv run --group dev pytest

py-test-gds:
Expand Down
6 changes: 6 additions & 0 deletions python-wrapper/src/neo4j_viz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
ForceDirectedLayoutOptions,
HierarchicalLayoutOptions,
Layout,
NvlOptions,
Packing,
PanPosition,
Renderer,
WidgetOptions,
)
from .relationship import Relationship
from .visualization_graph import VisualizationGraph
Expand All @@ -15,6 +18,9 @@
__all__ = [
"VisualizationGraph",
"GraphWidget",
"WidgetOptions",
"NvlOptions",
"PanPosition",
"Node",
"Relationship",
"CaptionAlignment",
Expand Down
Loading
Loading