]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
add clarification about object data structure (#8447)
authorLeeLenaleee <39033624+LeeLenaleee@users.noreply.github.com>
Fri, 19 Feb 2021 15:20:40 +0000 (16:20 +0100)
committerGitHub <noreply@github.com>
Fri, 19 Feb 2021 15:20:40 +0000 (17:20 +0200)
* add clarification about object data structure

* improved description with feedback

* fix push of wrong file

docs/docs/general/data-structures.md

index 113e726608953db7f687ca75406d01b4a4aaf28e..17913bcbf0cfaee8c16a33e6b4546a82ea4ba859 100644 (file)
@@ -32,6 +32,8 @@ data: [{x:'Sales', y:20}, {x:'Revenue', y:10}]
 
 This is also the internal format used for parsed data. In this mode, parsing can be disabled by specifying `parsing: false` at chart options or dataset. If parsing is disabled, data must be sorted and in the formats the associated chart type and scales use internally.
 
+The values provided must be parsable by the associated scales or in the internal format of the associated scales. A common mistake would be to provide integers for the `category` scale, which uses integers as an internal format, where each integer represents an index in the labels array.
+
 ## Object[] using custom properties
 
 ```javascript