We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got a request in the financial repo to support data as arrays. See chartjs/chartjs-chart-financial#7
Right now the syntax below is supported (docs)
data: [{ x: 10, y: 20 }, { x: 15, y: 10 }]
The request would like the following syntax to be supported as well:
data: [ [10, 20], [15, 10] ]
The text was updated successfully, but these errors were encountered:
data: [{ x: 10, y: 20 }, { x: 15, y: 10 }] This syntax doesn't actually work.
Sorry, something went wrong.
@ortonomy it doesn't? cause it's documented here, https://www.chartjs.org/docs/latest/charts/bar.html#data-structure
Closing as duplicate of #5988
No branches or pull requests
I got a request in the financial repo to support data as arrays. See chartjs/chartjs-chart-financial#7
Right now the syntax below is supported (docs)
The request would like the following syntax to be supported as well:
The text was updated successfully, but these errors were encountered: