Use Apache ECharts in the Observable Framework for interactive charts.
Observable Framework documentation: Library: Apache ECharts Source: https://observablehq.com/framework/lib-echarts
Apache ECharts, an open-source JavaScript visualization library, is available by default as echarts in Markdown. You can also import it explicitly like so:
import * as echarts from "npm:echarts";
To use ECharts, declare a container element with the desired dimensions, display it, and then call echarts.init.
const myChart = echarts.init(display(html`<div style="width: 600px; height:400px;"></div>`));
myChart.setOption({
title: {
text: "ECharts getting started example"
},
tooltip: {},
xAxis: {
data: ["shirt", "cardigan", "chiffon", "pants", "heels", "socks"]
},
yAxis: {},
series: [
{
name: "sales",
type: "bar",
data: [5, 20, 36, 10, 10, 20]
}
]
});
npx skills add spqw/Observable 框架 — ECharts(observable-framework-lib-echarts)下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer