Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Welcome

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")
chart

Next: open Dashboard to see linked controls drive a chart with jsdlink — kernel-free links that survive static export.