Line 2
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.18/assets/data/chart_types_eu_data_6.csv",
    dtype={"Year": str, "Timeseries": str},
)
data = Data()
data.add_df(df)
chart = Chart()
chart.animate(data)
 
- add a new Dimension to the Y-axis & the Color channel
- switch the Geometry from Line to Area
chart.animate(
    Config(
        {
            "channels": {"x": "Year", "y": "Value 3 (+)"},
            "geometry": "line",
        }
    )
)
chart.animate(
    Config(
        {
            "channels": {
                "y": ["Country", "Value 3 (+)"],
                "color": "Country",
            },
            "geometry": "area",
        }
    )
)