Chartjs-Interrupt a line in Chart.js lines

0👍

Just pass 2 datasets:

const labels = Utils.months({count: 7});
const data = {
  labels: labels,
  datasets: [{
    label: 'My First Dataset',
    data: [65, 59, 80],
    fill: false,
    borderColor: 'rgb(75, 192, 192)',
    tension: 0.1
  },{
    label: 'My 2nd Dataset',
    data: [null, null, null, 81, 56, 55, 40],
    fill: false,
    borderColor: 'rgb(75, 40, 192)',
    tension: 0.1
  }]
};

If You pass objects instead of arrays as data, then you do not even have to pad with nulls

Leave a comment