data-display
chart
Chart
Zero-dependency SVG bar / line / area.
$
Component docs
ndui add chart
Bar — monthly revenue (12 months)
Revenue
Monthly recurring revenue
No data available
Source
<noundry-chart type="bar"
title="Revenue"
description="Monthly recurring revenue"
data='@JsonSerializer.Serialize(monthly)'
x-axis="label"
height="280">
<noundry-chart-series key="value" label="Revenue" color="indigo" />
</noundry-chart>
Line — daily active users
DAU
Last 30 days
No data available
Source
<noundry-chart type="line"
title="DAU"
description="Last 30 days"
data='@JsonSerializer.Serialize(dau)'
x-axis="label"
height="280">
<noundry-chart-series key="value" label="DAU" color="emerald" />
</noundry-chart>
Area — storage used
Storage
GB consumed
No data available
Source
<noundry-chart type="area"
title="Storage"
description="GB consumed"
data='@JsonSerializer.Serialize(storage)'
x-axis="label"
height="280">
<noundry-chart-series key="value" label="Storage" color="violet" />
</noundry-chart>