Data Visualizer

Upload your data to get started

Chart Settings

Data Format

Upload your data in JSON format. The tool supports two formats:

1. Array of Objects:

[
  { "label": "Jan", "value": 10, "other": 20 },
  { "label": "Feb", "value": 15, "other": 25 }
]

2. Chart.js Format:

{
  "labels": ["Jan", "Feb"],
  "datasets": [{
    "label": "Dataset 1",
    "data": [10, 15]
  }]
}