The minimal tour. Import manywidgets and render a single Chart — a plain
anywidget in a live kernel that also renders with no kernel on the static
site. Drag nothing yet; just confirm it draws.
import numpy as np
from manywidgets import Chart
x = np.linspace(0, 10, 200)
chart = Chart(title="Hello, manywidgets", x_label="x", y_label="y", height=320, width=520)
chart.add_series(x=x, y=np.sin(x), name="sin")
chart.add_series(x=x, y=np.cos(x), name="cos")
chartNext: open Dashboard to see linked controls drive a
chart with jsdlink — kernel-free links that survive static export.