sgds-data-visualisation
Original:🇺🇸 English
Translated
Use this skill when users ask about data visualisation, charts, graphs, or dashboards in an SGDS application. Covers ECharts setup and applying the SGDS colour palette to charts.
8installs
Added on
NPX Install
npx skill4agent add govtechsg/sgds-web-component sgds-data-visualisationTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →SGDS Data Visualisation Pattern
SGDS does not bundle a charting library. For data visualisation, use Apache ECharts and apply the SGDS colour palette so charts remain visually consistent with your design system.
Prerequisites
- Complete base project setup per sgds-getting-started.
- Install and configure ECharts independently — see https://echarts.apache.org/.
Installing ECharts
ECharts is not included in . Install it separately:
@govtechsg/sgds-web-componentbash
npm install echartsThen import and initialise per the ECharts getting started guide:
js
import * as echarts from "echarts";
const chart = echarts.init(document.getElementById("chart"));
chart.setOption(option);SGDS Colour Palette for ECharts
Apply the SGDS palette by setting the array in your chart option. The values below are the raw hex values of the SGDS data-visualisation primitive tokens:
color| Token | Hex |
|---|---|
| |
| |
| |
| |
| |
Per-chart (recommended)
Set directly in the chart option. ECharts cycles through the colours sequentially across series:
colorjs
const option = {
color: ["#ac1cdb", "#00758d", "#0e7c3d", "#0269d0", "#7e6917"],
// ... rest of chart option
};Global theme (all charts on the page)
Register a named theme once at app startup, then pass the theme name when initialising each chart:
js
import * as echarts from "echarts";
echarts.registerTheme("sgds", {
color: ["#ac1cdb", "#00758d", "#0e7c3d", "#0269d0", "#7e6917"],
});
const chart = echarts.init(document.getElementById("chart"), "sgds");For AI Agents
- ECharts is not provided by SGDS — always tell users to install it separately from https://echarts.apache.org/.
- The five SGDS palette colours are fixed hex values taken from the primitive tokens. Do not reference CSS variables inside the ECharts array — ECharts does not resolve CSS custom properties.
color - For a single chart, set in the option object. For multiple charts sharing the same palette, use
coloronce at app startup.echarts.registerTheme() - Palette order: purple → cyan → green → blue → yellow. ECharts cycles through them automatically across series.