overview:
- Interactive link graph visualization.
- usage: graph view
Note
plugin changes: Configuration
API
api:
category: Component
function_name: ExternalPlugin.Graph()
source: quartz-community/graph
install: npx quartz plugin add github:quartz-community/graph
Configuration
configuration:
option_groups: - localGraph - globalGraph
schema: shared
| Option | Type | Local Default | Global Default | Description |
|---|---|---|---|---|
drag | boolean | true | true | Node dragging |
zoom | boolean | true | true | Zoom |
depth | number | 1 | -1 | Traversal depth |
scale | number | 1.1 | 0.9 | Initial scale |
repelForce | number | 0.5 | 0.5 | Node repulsion force |
centerForce | number | 0.3 | 0.3 | Center gravity force |
linkDistance | number | 30 | 30 | Linked-node distance |
fontSize | number | 0.6 | 0.6 | Node-label font size |
opacityScale | number | 1 | 1 | Node opacity scale |
removeTags | string[] | [] | [] | Excluded tags |
showTags | boolean | true | true | Tag nodes |
enableRadial | boolean | false | true | Radial layout |
focusOnHover | boolean | false | true | Hover focus; dim non-targets |
- source: github:quartz-community/graph
enabled: true
options:
localGraph:
drag: true
zoom: true
depth: 1
scale: 1.1
repelForce: 0.5
centerForce: 0.3
linkDistance: 30
fontSize: 0.6
opacityScale: 1
removeTags: []
showTags: true
focusOnHover: false
enableRadial: false
globalGraph:
drag: true
zoom: true
depth: -1
scale: 0.9
repelForce: 0.5
centerForce: 0.3
linkDistance: 30
fontSize: 0.6
opacityScale: 1
removeTags: []
showTags: true
focusOnHover: true
enableRadial: true