# Usage
Tree data should be provided in tree
property of dataset. data
is then automatically build. key
defines the key name in data objects to use for value. groups
array can be provided to display multiple levels of hierarchy.
Data is summarized to groups internally.
const config = { type: 'matrix', data: { datasets: [{ label: 'Basic matrix', data: [{x: 1, y: 1}, {x: 2, y: 1}, {x: 1, y: 2}, {x: 2, y: 2}], borderWidth: 1, borderColor: 'rgba(0,0,0,0.5)', backgroundColor: 'rgba(200,200,0,0.3)', width: ({chart}) => (chart.chartArea || {}).width / 2 - 1, height: ({chart}) => (chart.chartArea || {}).height / 2 - 1, }], }, options: { scales: { x: { display: false, min: 0.5, max: 2.5, offset: false }, y: { display: false, min: 0.5, max: 2.5 } } } }; module.exports = { config };