Chart
  • What is Chart
  • Getting started
    • Customize chart
    • Update chart
    • Edit chart
  • Templates
  • Tabulated data
  • JSON data
  • Privacy Policy
Powered by GitBook
On this page
  • Link Chart with remote JSON
  • Upload JSON
  • What is valid JSON

Was this helpful?

JSON data

Use real data from local or remote JSONs (API).

PreviousTabulated dataNextPrivacy Policy

Last updated 5 years ago

Was this helpful?

Link Chart with remote JSON

If you want to use data for Chart from your REST API response go to JSON tab and click HTTPS link, your JSON must be valid. After syncing you need to select keys, header and click Create chart.

Upload JSON

If you want to upload static JSON file click Local JSON in the JSON tab. You can use only valid JSON.

What is valid JSON

Valid JSON must have array of objects, each object must have the similar keys.

[
	{
		"date":"21.03",
		"price":"$120.3",
		"sales":43
	},
	{
		"date":"22.03",
		"price":"$130.4",
		"sales":40
	},
	{
		"date":"23.03",
		"price":"$70.1",
		"sales":25
	}
]