grafana/public/app/plugins/panel/nodeGraph
Andrej Ocenas aba65747c9
Nodegraph: Fix issue with rendering single node (#84930)
Fix for single node graph case
2024-03-26 13:43:43 +01:00
..
editor Chore: Deprecate FieldConfigEditorProps in favor of StandardEditorProps (#78319) 2023-12-07 13:03:18 +02:00
img NodeGraph: Add node graph visualization (#29706) 2021-01-19 16:34:43 +01:00
createLayoutWorker.ts Nodegraph: Fix issue with rendering single node (#84930) 2024-03-26 13:43:43 +01:00
Edge.tsx NodeGraph: Edge color and stroke-dasharray support (#83855) 2024-03-18 16:26:22 +01:00
EdgeArrowMarker.tsx Plugins: Improvements to NodeGraph (#76879) 2023-10-24 15:16:10 +02:00
EdgeLabel.tsx NodeGraph: Allow to set node radius in dataframe (#74963) 2023-09-25 16:55:52 +02:00
forceLayout.js Nodegraph: Fix issue with rendering single node (#84930) 2024-03-26 13:43:43 +01:00
index.ts NodeGraph: Exploration mode (#33623) 2021-05-12 16:04:21 +02:00
layeredLayout.js Nodegraph: Fix issue with rendering single node (#84930) 2024-03-26 13:43:43 +01:00
layeredLayout.test.ts Nodegraph: Fix issue with rendering single node (#84930) 2024-03-26 13:43:43 +01:00
layout.test.ts Plugins: Improvements to NodeGraph (#76879) 2023-10-24 15:16:10 +02:00
layout.ts NodeGraph: Use layered layout instead of force based layout (#78957) 2024-01-31 17:26:12 +01:00
layout.worker.js Nodegraph: Fix issue with rendering single node (#84930) 2024-03-26 13:43:43 +01:00
layoutLayered.worker.js Nodegraph: Fix issue with rendering single node (#84930) 2024-03-26 13:43:43 +01:00
Legend.test.tsx Chore: Refactor dataviz aria-label e2e selectors to data-testid (#78938) 2023-12-17 02:10:04 +02:00
Legend.tsx Chore: Improve typings and ignore Graph (#75742) 2023-10-06 11:48:15 +01:00
Marker.tsx Chore: Reduce usage of v1 theme (#53245) 2022-08-08 16:37:06 +01:00
module.tsx Tracing: Add node graph panel suggestion (#83311) 2024-02-27 12:28:17 +00:00
Node.test.tsx Plugins: Improvements to NodeGraph (#76879) 2023-10-24 15:16:10 +02:00
Node.tsx Plugins: Improvements to NodeGraph (#76879) 2023-10-24 15:16:10 +02:00
NodeGraph.test.tsx NodeGraph: Fix overlaps preventing opening an edge context menu when nodes were too close (#68571) 2023-05-17 15:22:21 +02:00
NodeGraph.tsx Update dependency prettier to v3.2.4 (#81047) 2024-01-23 11:41:24 +00:00
NodeGraphPanel.tsx Chore: Avoid explicit React.FunctionComponent<Props> when possible (round 3) (#64839) 2023-03-16 16:56:26 +02:00
panelcfg.cue kindsys: Adapt to new flattened lineage syntax in Thema (#68034) 2023-05-24 10:47:25 +02:00
panelcfg.gen.ts Schemas: Reduce duplicated jenny code (#84061) 2024-03-11 12:51:44 +01:00
plugin.json Chore: Remove the beta badge for Node Graph and Traces (#62566) 2023-02-27 15:16:01 +01:00
README.md Chore: Add a README for the Node Graph plugin (#54801) 2022-09-07 14:52:55 +01:00
suggestions.ts Tracing: Add node graph panel suggestion (#83311) 2024-02-27 12:28:17 +00:00
types.ts NodeGraph: Edge color and stroke-dasharray support (#83855) 2024-03-18 16:26:22 +01:00
useCategorizeFrames.ts Geomap: Add network layer (#70192) 2023-07-26 11:58:55 -07:00
useContextMenu.tsx NodeGraph: Add "key" prop to context menu items (#69360) 2023-06-01 13:01:48 +03:00
useFocusPositionOnLayout.ts Chore: ESlint import order (#44959) 2022-04-22 14:33:13 +01:00
useHighlight.ts NodeGraph: Exploration mode (#33623) 2021-05-12 16:04:21 +02:00
useNodeLimit.ts Chore: ESlint import order (#44959) 2022-04-22 14:33:13 +01:00
usePanning.ts Chore: some type fixes (#80094) 2024-01-09 10:00:00 +00:00
useZoom.ts Chore: some type fixes (#59030) 2022-11-29 15:52:08 +00:00
utils.test.ts Chore: some type fixes (#80094) 2024-01-09 10:00:00 +00:00
utils.ts NodeGraph: Edge color and stroke-dasharray support (#83855) 2024-03-18 16:26:22 +01:00
ViewControls.tsx Chore: Reduce usage of v1 theme (#53245) 2022-08-08 16:37:06 +01:00

Node Graph

The node graph visualizes directed graphs or networks. It uses a directed force layout to effectively position the nodes, so it can display complex infrastructure maps, hierarchies, or execution diagrams.

You can read more about the node graph panel here.

Node graph panel