bx-charts — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited bx-charts (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
install-bx-module bx-charts
# CommandBox
box install bx-chartsPowered by Chart.js under the hood. Outputs responsive, interactive HTML5 canvas-based charts.
| Component | Purpose |
|---|---|
bx:chart | Outer chart wrapper — defines layout, size, titles |
bx:chartseries | A data series (one series = one dataset/line/set of bars) |
bx:chartdata | A single data point (label + value) inside a series |
| Type | Description |
|---|---|
bar | Vertical bar chart |
horizontalbar | Horizontal bar chart |
line | Line chart |
area | Line chart with filled area |
pie | Pie chart |
doughnut | Doughnut (ring) chart |
radar | Radar/spider chart |
polarArea | Polar area chart |
scatter | Scatter plot |
bubble | Bubble chart |
<bx:chart title="Monthly Sales" chartWidth="700" chartHeight="400">
<bx:chartseries type="bar" seriesLabel="Revenue">
<bx:chartdata item="January" value="12500">
<bx:chartdata item="February" value="15200">
<bx:chartdata item="March" value="18900">
<bx:chartdata item="April" value="14300">
<bx:chartdata item="May" value="21000">
</bx:chartseries>
</bx:chart><bx:chart title="Page Views" chartWidth="800" chartHeight="350" showLegend="true">
<bx:chartseries type="line" seriesLabel="2024">
<bx:chartdata item="Jan" value="4200">
<bx:chartdata item="Feb" value="5100">
<bx:chartdata item="Mar" value="6300">
</bx:chartseries>
<bx:chartseries type="line" seriesLabel="2025">
<bx:chartdata item="Jan" value="5800">
<bx:chartdata item="Feb" value="7200">
<bx:chartdata item="Mar" value="8500">
</bx:chartseries>
</bx:chart><bx:chart title="Browser Share" chartWidth="500" chartHeight="500" showLegend="true">
<bx:chartseries type="pie">
<bx:chartdata item="Chrome" value="65">
<bx:chartdata item="Firefox" value="12">
<bx:chartdata item="Safari" value="18">
<bx:chartdata item="Edge" value="5">
</bx:chartseries>
</bx:chart>var salesQuery = queryExecute(
"SELECT month_name, total_revenue FROM monthly_sales ORDER BY month_num",
{},
{ returntype: "array" }
)<bx:chart title="Sales by Month" chartWidth="900" chartHeight="400" xAxisTitle="Month" yAxisTitle="Revenue ($)">
<bx:chartseries type="bar" seriesLabel="Revenue">
<bx:loop array="#salesQuery#" item="row">
<bx:chartdata item="#row.month_name#" value="#row.total_revenue#">
</bx:loop>
</bx:chartseries>
</bx:chart><bx:chart
title="Quarterly Performance"
chartWidth="900"
chartHeight="400"
showLegend="true"
seriesPlacement="cluster"
xAxisTitle="Quarter"
yAxisTitle="USD"
>
<bx:chartseries type="bar" seriesLabel="Actual">
<bx:chartdata item="Q1" value="125000">
<bx:chartdata item="Q2" value="148000">
<bx:chartdata item="Q3" value="162000">
<bx:chartdata item="Q4" value="190000">
</bx:chartseries>
<bx:chartseries type="bar" seriesLabel="Target">
<bx:chartdata item="Q1" value="120000">
<bx:chartdata item="Q2" value="145000">
<bx:chartdata item="Q3" value="170000">
<bx:chartdata item="Q4" value="200000">
</bx:chartseries>
</bx:chart><bx:chart
title="Responsive Chart"
chartWidth="100%"
chartHeight="400"
responsive="true"
showBorder="false"
backgroundColor="transparent"
>
<bx:chartseries type="area" seriesLabel="Users">
<bx:chartdata item="Mon" value="320">
<bx:chartdata item="Tue" value="410">
<bx:chartdata item="Wed" value="380">
</bx:chartseries>
</bx:chart>bx:chart Attribute Reference| Attribute | Description | Default |
|---|---|---|
title | Chart title | — |
chartWidth | Width (px or %) | 400 |
chartHeight | Height (px) | 400 |
backgroundColor | Chart background color | white |
showLegend | Show legend | false |
showBorder | Show border around the chart | true |
seriesPlacement | cluster (side-by-side) or stacked | cluster |
xAxisTitle | X-axis label text | — |
yAxisTitle | Y-axis label text | — |
responsive | Enable responsive scaling | false |
bx:chartseries Attribute Reference| Attribute | Description |
|---|---|
type | Chart type (see table above) |
seriesLabel | Legend label for this series |
colorList | Comma-separated color list for data points |
seriesColor | Color for the entire series |
bx:chart must always contain at least one bx:chartseriesbx:chartseries must always contain bx:chartdata childrenscatter and bubble charts use { x, y } or { x, y, r } values — not simple value integersresponsive="true" with chartWidth="100%" for mobile-friendly chartsseriesPlacement="stacked" makes all series stack; works with bar, area, linebx:chartseries — use multiple bx:chartdata items for segments~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.