Transform your data into stunning visualizations with our free, browser-based chart generator. Upload CSV files or input data manually to create bar, line, and pie charts. Customize colors, labels, and download or share your charts instantly.
CSV files should have a header row followed by data rows. You can also include metadata in comment lines (starting with #).
# title: Quarterly Sales Comparison # type: bar # colors: #80208f,#ba68c8 Quarter,2023,2024 Q1,5000,6000 Q2,7000,8000 Q3,8000,9000 Q4,6000,1500
The first column in the header row is for your labels (such as categories, time periods, or names). Each additional column is a dataset or series (such as years, products, or groups you want to compare). For example, in Quarter,2023,2024
:
Header | Purpose |
---|---|
Quarter | Label for each row (category or time period) |
2023 | Dataset/series (e.g., values for 2023) |
2024 | Dataset/series (e.g., values for 2024) |
Q1
).5000
for 2023, 6000
for 2024).# title: Your Chart Title
- Sets the chart title# type: bar|line|pie|doughnut
- Sets the chart type# colors: #hex1,#hex2,...
- Sets custom colors for data seriesFor bar and line charts, colors are applied to each data series (column) in order:
# colors: #80208f,#ba68c8,#9c27b0 Month,Sales,Expenses,Profit January,1000,600,400 February,1200,650,550
In this example:
For pie and doughnut charts, colors are applied to each slice in order:
# type: pie # colors: #80208f,#ba68c8,#9c27b0 Category,Value Category A,100 Category B,200 Category C,300
In this example:
If you don't specify colors, the tool will automatically assign colors from its default palette.
A browser-based tool for creating interactive charts and graphs from your data.
Simply upload your data (CSV) or input it manually, choose your chart type, customize the appearance, and download or share your chart. All processing happens in your browser for maximum privacy.