mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-07-22 03:00:29 +00:00
- Graph: add focusOnHover and numeric defaults for all D3Config options - Search: add enablePreview and fieldPriority options - TableOfContents: add layout component option - FolderPage: add showFolderCount and showSubfolders options - TagPage: add numPages option - BasesPage: add linkResolution option
2.4 KiB
2.4 KiB
| title | tags | image | |
|---|---|---|---|
| Graph |
|
Interactive graph visualization.
Note
For information on how to add, remove or configure plugins, see the configuration#Plugins page.
See graph view for detailed usage information.
Configuration
This plugin accepts the following configuration options:
localGraph: Options for the local graph view.globalGraph: Options for the global graph view.
Both localGraph and globalGraph accept the following options:
drag: Enable dragging nodes. Defaults totrue.zoom: Enable zooming. Defaults totrue.depth: The depth of the graph. Defaults to1for local and-1for global.scale: The initial scale of the graph. Defaults to1.1for local and0.9for global.repelForce: The force that pushes nodes apart. Defaults to0.5.centerForce: The force that pulls nodes to the center. Defaults to0.3for local and0.2for global.linkDistance: The distance between linked nodes. Defaults to30.fontSize: The font size of node labels. Defaults to0.6.opacityScale: The scale of node opacity. Defaults to1.removeTags: Tags to exclude from the graph. Defaults to[].showTags: Whether to show tags in the graph. Defaults totrue.enableRadial: Whether to enable radial layout. Defaults tofalsefor local andtruefor global.focusOnHover: Whether to focus on the hovered node. Defaults tofalsefor local andtruefor global.
Default options
- 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
API
- Category: Component
- Function name:
ExternalPlugin.Graph(). - Source:
quartz-community/graph - Install:
npx quartz plugin add github:quartz-community/graph