Coxcomb 1
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_8.csv", |
| dtype={"Year": str, "Timeseries": str}, |
| ) |
| data = Data() |
| data.add_df(df) |
| |
| chart = Chart() |
| chart.animate(data) |
- move the 2nd Dimension from X-axis to the Y-axis
- set the Split parameter to True
| chart.animate( |
| Config( |
| { |
| "channels": { |
| "x": ["Country", "Year"], |
| "y": {"set": "Value 2 (+)", "range": {"min": "-20%"}}, |
| "color": "Country", |
| }, |
| "coordSystem": "polar", |
| } |
| ) |
| ) |
| |
| chart.animate( |
| Config( |
| { |
| "channels": { |
| "x": "Year", |
| "y": ["Country", "Value 2 (+)"], |
| }, |
| "split": True, |
| } |
| ) |
| ) |
| |
| chart.feature("tooltip", True) |