Skip to content

Treemap

Info - How to setup Chart
import pandas as pd
from ipyvizzu import Chart, Data, Config, Style

df = pd.read_csv(
    "https://ipyvizzu.vizzuhq.com/0.17/assets/data/chart_types_eu.csv",
    dtype={"Year": str, "Timeseries": str},
)
data = Data()
data.add_df(df)

chart = Chart()
chart.animate(data)
  • add the Dimension whitch is on Label channel to the Size channel too (stack)
chart.animate(
    Config(
        {
            "channels": {
                "size": "Value 2 (+)",
                "noop": "Country_code",
                "color": "Joy factors",
                "label": "Country_code",
            }
        }
    )
)

chart.animate(
    Config({"channels": {"size": ["Country_code", "Value 2 (+)"]}})
)