# Dividers

const config = {
  type: 'treemap',
  data: {
    datasets: [{
      tree: data,
      key: 'value',
      groups: ['category'],
      borderWidth: 1,
      borderColor: 'rgba(200,200,200,1)',
      borderRadius: 10,
      backgroundColor: 'rgba(220,230,220,0.3)',
      hoverBackgroundColor: 'rgba(220,230,220,0.5)',
      dividers: {
        display: true,
        lineDash: [3, 5],
        lineWidth: 2,
      }
    }]
  },
  options: options
};
Last Updated: 11/13/2023, 6:13:46 PM