RemotionUI

Animated Bar Chart

Animated data bar chart scene.

SceneData & mediaAdvanced

animated-bar-chart30fps · 960×540
Install
$ npx remotion-ui@latest add animated-bar-chart

Data-first bar chart scene with staggered values and labels.

Agent notes

Install first, then import the copied source component locally. AI guide →

Import
@/remotion/scenes/animated-bar-chart
  • Use when: data stories, metrics, charts, and numeric proof points.
  • Customize: data, maxValue, valueFormatter, plus copied source for timing, layout, colors, and typography.
  • Rule: do not import this component from the remotion-ui npm package; it is copied into your project.

Usage

Example
import { AnimatedBarChart } from "@/remotion/scenes/animated-bar-chart"; <AnimatedBarChart data={[{ label: "Views", value: 120000 }]} />

API Reference

PropTypeDescription
data*ChartDatum[]Bar labels and values.
maxValuenumberOptional fixed max domain.
valueFormatter(value: number) => stringValue label formatter.

Related