Spaces:
Running
Running
File size: 1,876 Bytes
42ee455 2465927 dda021c 42ee455 dda021c 42ee455 dda021c 42ee455 dda021c 2465927 dda021c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
"""Flow charts."""
import vizro.models as vm
from pages._factories import waterfall_factory
from pages._pages_utils import PAGE_GRID, make_code_clipboard_from_py_file
from pages.examples import sankey
sankey_page = 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.fig),
vm.Tabs(
tabs=[
vm.Container(
title="Vizro dashboard", components=[make_code_clipboard_from_py_file("sankey.py", mode="vizro")]
),
vm.Container(
title="Plotly figure",
components=[make_code_clipboard_from_py_file("sankey.py", mode="plotly")],
),
]
),
],
)
waterfall_page = waterfall_factory("flow")
pages = [sankey_page, waterfall_page]
|