You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+50-3Lines changed: 50 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,60 @@ This is a panel plugin for generating Sankey diagrams in Grafana 8.0+. Sankey di
11
11
12
12
## What's Different in This Fork
13
13
14
-
This fork simplifies the data parser to support **multi-step Sankey charts from just 3 columns of data**: `source`, `destination`, and `value`. This makes it easier to create complex flow visualizations without complex query structuring.
14
+
This fork simplifies the data parser to support **multi-step Sankey charts from 3 or 4 columns of data**:
The sankey panel requires at least 2 columns of data, a source and destination for the flows. This means your query should group your data into at least two groups. The screenshot above shows data grouped by source country, then by destination county.
20
-
The panel will draw links from the first column of data points, to the last in order of the query. The thickness of the links will be proportionate to the value as assigned by the metric in the query.
67
+
The panel will draw links from the source to the destination nodes. The thickness of the links will be proportionate to the value. When using the 4-column format with custom colors, each link will use its specified color. Otherwise, colors are automatically assigned based on the source node.
0 commit comments