Make Space with Polar
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_data_8.csv",
dtype={"Year": str, "Timeseries": str},
)
data = Data()
data.add_df(df)
chart = Chart()
chart.animate(data)
- change coordinate system to 'polar'
- add left padding in the Style to make space near the chart for something
chart.animate(
Config(
{
"channels": {
"x": "Value 2 (+)",
"y": "Country",
"color": "Country",
}
}
)
)
chart.animate(
Config(
{
"channels": {
"x": ["Value 2 (+)"],
"y": {"set": "Country", "range": {"min": "-30%"}},
"size": None,
},
"coordSystem": "polar",
}
),
Style({"plot": {"paddingLeft": "25em"}}),
)