Spaces:
Running
Running
"""Flow charts.""" | |
import vizro.models as vm | |
from custom_charts import sankey | |
from pages._factories import waterfall_factory | |
from pages._pages_utils import PAGE_GRID, make_code_clipboard_from_py_file, sankey_data | |
sankey = vm.Page( | |
title="Sankey", | |
path="flow/sankey", | |
layout=vm.Layout(grid=PAGE_GRID), | |
components=[ | |
vm.Card( | |
text=""" | |
#### What is a sankey chart? | |
A Sankey chart is a type of flow diagram that illustrates how resources or values move between different | |
stages or entities. The width of the arrows in the chart is proportional to the quantity of the flow, | |
making it easy to see where the largest movements occur. | |
| |
#### When should I use it? | |
Use a Sankey chart when you want to visualize the flow of resources, energy, money, or other values from | |
one point to another. It is particularly useful for showing distributions and transfers within a system, | |
such as energy usage, cost breakdowns, or material flows. | |
Be mindful that Sankey charts can become cluttered if there are too many nodes or flows. | |
To maintain clarity, focus on highlighting the most significant flows and keep the chart as simple as | |
possible. | |
""" | |
), | |
vm.Graph( | |
figure=sankey( | |
sankey_data, | |
labels=["A1", "A2", "B1", "B2", "C1", "C2"], | |
source="Origin", | |
target="Destination", | |
value="Value", | |
), | |
), | |
make_code_clipboard_from_py_file("sankey.py"), | |
], | |
) | |
waterfall = waterfall_factory("flow") | |
pages = [sankey, waterfall] | |