Skip to content

Commit

Permalink
Add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Dec 11, 2023
1 parent 4965aeb commit 4d180b4
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion docs/modules/ROOT/pages/neo4j-arc/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,15 @@ image:basic-example.png[width=900]

=== Options

==== Turnning Off Inspection Panel
==== Turnning Off Node Inspector Panel

neo4j-arc shows graph with an accompanying inspection panel on the right side. This panel might be not needed in at
least 2 business scenarios:

1. a simple static page that just needs to show some static and simple graph
2. a MVP product has planned but would not want to add panel feature at the moment

The inspector panel will show by default. To turn it-off:

[source,typescript]
----
Expand All @@ -97,6 +105,23 @@ export default function MyGraphComponent(): JSX.Element {
}
----

==== Turnning Off Properties Table



[source,typescript]
----
export default function MyGraphComponent(): JSX.Element {
return (
<GraphVisualizer
...
showPropertiesTable={false}
/>
);
}
----

= Neo4J Browser Internals

The Neo4J Browser is logically composed of 2 parts:
Expand Down

0 comments on commit 4d180b4

Please sign in to comment.