This component no longer exists. It was in remotionui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-11 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
dashboard-populate
remotionui/dashboard-populateRemovedBlock
Dashboard metrics populate
Live preview
live · rendered by the registry
Rendered by remotionui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://remotionui.com/r/dashboard-populate.jsonSource
1import { AbsoluteFill } from "remotion";2import { TransitionSeries } from "@remotion/transitions";3import { transitionFade } from "@/remotion/primitives/transition-fade";4import { AnimatedBarChart } from "@/remotion/scenes/animated-bar-chart";5import { MetricTicker, type MetricTickerItem } from "@/remotion/scenes/metric-ticker";6import { DURATION } from "@/remotion/lib/motion-tokens";7import type { ChartDatum } from "@/remotion/lib/chart-utils";89const BAR_DATA: ChartDatum[] = [10 { label: "Mon", value: 42 },11 { label: "Tue", value: 58 },12 { label: "Wed", value: 71 },13 { label: "Thu", value: 64 },14];1516const METRICS: MetricTickerItem[] = [17 { label: "Active users", value: 12400, suffix: "", delta: "+18%" },18 { label: "Render time", value: 4, suffix: "s", delta: "-12%" },19];2021const SCENE_DURATIONS = {22 metrics: 90,23 chart: 90,24} as const;2526export type DashboardPopulateProps = {27 metrics?: MetricTickerItem[];28 barData?: ChartDatum[];29 metricsTitle?: string;30 chartTitle?: string;31 backgroundColor?: string;32};3334export const DashboardPopulate: React.FC<DashboardPopulateProps> = ({35 metrics = METRICS,36 barData = BAR_DATA,37 metricsTitle = "Dashboard waking up",38 chartTitle = "Weekly throughput",39 backgroundColor = "#080810",40}) => {41 const fade = transitionFade({ durationInFrames: DURATION.fast });4243 return (44 <AbsoluteFill style={{ background: backgroundColor }}>45 <TransitionSeries>46 <TransitionSeries.Sequence durationInFrames={SCENE_DURATIONS.metrics}>47 <MetricTicker metrics={metrics} title={metricsTitle} />48 </TransitionSeries.Sequence>49 <TransitionSeries.Transition {...fade} />50 <TransitionSeries.Sequence durationInFrames={SCENE_DURATIONS.chart}>51 <AnimatedBarChart data={barData} title={chartTitle} />52 </TransitionSeries.Sequence>53 </TransitionSeries>54 </AbsoluteFill>55 );56};
