Skip to content

Dot plot 4

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

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

chart = Chart()
chart.animate(data)
  • add a new Measure to the X-axis
  • move the Dimension from the no-operation (Noop) channel to the Label channel
chart.animate(
    Config(
        {
            "channels": {
                "x": "Joy factors",
                "y": "Value 5 (+/-)",
                "color": "Joy factors",
                "noop": "Country_code",
            },
            "geometry": "circle",
        }
    ),
    Style(
        {
            "plot": {
                "marker": {
                    "colorPalette": "#ef675aFF #6d8cccFF #e6cf99FF #9c50abFF"
                }
            }
        }
    ),
)

chart.animate(
    Config(
        {
            "channels": {
                "x": ["Joy factors", "Value 6 (+/-)"],
                "label": "Country_code",
                "noop": None,
            }
        }
    )
)