Data structures

The data property of a dataset can be passed in various formats. By default, that data is parsed using the associated chart type and scales.

If the labels property of the main data property is used, it has to contain the same amount of elements as the dataset with the most values. These labels are used to label the index axis (default x axes). The values for the labels have to be provided in an array. The provides labels can be of the type string or number to be rendered correctly. In case you want multiline labels you can provide an array with each line as one entry in the array.

Primitive[]

  1. data: [20, 10],
  2. labels: ['a', 'b']

When the data is an array of numbers, values from labels array at the same index are used for the index axis (x for vertical, y for horizontal charts).

Object[]

  1. data: [{x: 10, y: 20}, {x: 15, y: null}, {x: 20, y: 10}]
  1. data: [{x:'2016-12-25', y:20}, {x:'2016-12-26', y:10}]
  1. 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. null can be used for skipped values.

Object[] using custom properties

  1. type: 'bar',
  2. data: {
  3. datasets: [{
  4. data: [{id: 'Sales', nested: {value: 1500}}, {id: 'Purchases', nested: {value: 500}}]
  5. }]
  6. },
  7. options: {
  8. parsing: {
  9. xAxisKey: 'id',
  10. yAxisKey: 'nested.value'
  11. }
  12. }

Object

  1. data: {
  2. January: 10,
  3. February: 20
  4. }

In this mode, property name is used for index scale and value for value scale. For vertical charts, index scale is x and value scale is y.

Dataset Configuration

NameTypeDescription
labelstringThe label for the dataset which appears in the legend and tooltips.
clipnumber|objectHow to clip relative to chartArea. Positive value allows overflow, negative value clips that many pixels inside chartArea. 0 = clip at chartArea. Clipping can also be configured per side: clip: {left: 5, top: false, right: -2, bottom: 0}
ordernumberThe drawing order of dataset. Also affects order for stacking, tooltip and legend.
stackstringThe ID of the group to which this dataset belongs to (when stacked, each group will be a separate stack).
parsingboolean|objectHow to parse the dataset. The 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.
hiddenbooleanConfigure the visibility of the dataset. Using hidden: true will hide the dataset from being rendered in the Chart.

parsing

  1. const data = [{x: 'Jan', net: 100, cogs: 50, gm: 50}, {x: 'Feb', net: 120, cogs: 55, gm: 75}];
  2. const cfg = {
  3. type: 'bar',
  4. data: {
  5. labels: ['Jan', 'Feb'],
  6. datasets: [{
  7. label: 'Net sales',
  8. data: data,
  9. parsing: {
  10. yAxisKey: 'net'
  11. }
  12. }, {
  13. label: 'Cost of goods sold',
  14. data: data,
  15. parsing: {
  16. yAxisKey: 'cogs'
  17. }
  18. }, {
  19. label: 'Gross margin',
  20. data: data,
  21. parsing: {
  22. yAxisKey: 'gm'
  23. }
  24. }]
  25. },
  26. };