Perspective Graph an Array

You should able to do this with the XY chart. Add a key to datasources, add an expression binding to the array tag, and add a script transform like this:

return [
	{
		"row": index,
		"value": value
	}
	for index, value in enumerate(value)
]

Then just configure the ‘X’ axis as row and the ‘Y’ axis as value.

1 Like