/usr/share/grafana/public/app/plugins/panel/nodeGraph
// Code generated - EDITING IS FUTILE. DO NOT EDIT. // // Generated by: // public/app/plugins/gen.go // Using jennies: // TSTypesJenny // PluginTsTypesJenny // // Run 'make gen-cue' from repository root to regenerate. export interface ArcOption { /** * The color of the arc. */ color?: string; /** * Field from which to get the value. Values should be less than 1, representing fraction of a circle. */ field?: string; } export enum ZoomMode { Cooperative = 'cooperative', Greedy = 'greedy', } export enum LayoutAlgorithm { Force = 'force', Grid = 'grid', Layered = 'layered', } export interface Options { edges?: { /** * Unit for the main stat to override what ever is set in the data frame. */ mainStatUnit?: string; /** * Unit for the secondary stat to override what ever is set in the data frame. */ secondaryStatUnit?: string; }; /** * How to layout the nodes in the node graph */ layoutAlgorithm?: LayoutAlgorithm; nodes?: { /** * Unit for the main stat to override what ever is set in the data frame. */ mainStatUnit?: string; /** * Unit for the secondary stat to override what ever is set in the data frame. */ secondaryStatUnit?: string; /** * Define which fields are shown as part of the node arc (colored circle around the node). */ arcs?: Array<ArcOption>; }; /** * How to handle zoom/scroll events in the node graph */ zoomMode?: ZoomMode; }
.
Edit
..
Edit
Edge.tsx
Edit
EdgeArrowMarker.tsx
Edit
EdgeLabel.tsx
Edit
Legend.test.tsx
Edit
Legend.tsx
Edit
Marker.tsx
Edit
Node.test.tsx
Edit
Node.tsx
Edit
NodeGraph.test.tsx
Edit
NodeGraph.tsx
Edit
NodeGraphPanel.tsx
Edit
README.md
Edit
ViewControls.tsx
Edit
createLayoutWorker.ts
Edit
editor
Edit
forceLayout.js
Edit
img
Edit
layeredLayout.js
Edit
layeredLayout.test.ts
Edit
layeredLayout.worker.js
Edit
layout.test.ts
Edit
layout.ts
Edit
layout.worker.js
Edit
module.tsx
Edit
panelcfg.cue
Edit
panelcfg.gen.ts
Edit
plugin.json
Edit
suggestions.ts
Edit
types.ts
Edit
useCategorizeFrames.ts
Edit
useContextMenu.tsx
Edit
useFocusPositionOnLayout.ts
Edit
useHighlight.ts
Edit
useNodeLimit.ts
Edit
usePanning.ts
Edit
useZoom.ts
Edit
utils.test.ts
Edit
utils.ts
Edit