Create animated racing bar chart videos with your data
🏁 Create racing bar charts for any competitive data - companies, countries, stocks, or any entity racing over time
📊 Modify the JSON data below to create your custom racing bar chart. Sample data is loaded by default.
JSON Structure for Racing Charts:
📝 Edit the JSON above to customize your data - change entities, values, time periods, and colors
{
"timePeriods": ["2020", "2021", "2022"],
"data": [
["Entity", "Value", "Category", "EntityID", "Year"],
["Apple", 274515, "Technology", "AAPL", "2020"],
["Tesla", 31536, "Automotive", "TSLA", "2020"]
],
"entities": {
"AAPL": { "color": "#007AFF", "displayName": "🍎 Apple" },
"TSLA": { "color": "#E31837", "displayName": "🚗 Tesla" }
},
"dataType": {
"entityType": "company",
"valueType": "revenue",
"valueUnit": "Million USD"
}
}