I\'m using chart.js and I have some missing data between multiple day entries at certain points in my chart. I\'ve assigned these values null, but would like the chart to dr
For charts.js v2, you just define it in the dataset:
var data = { labels: labels, datasets: [ { backgroundColor: "#94b5c244", borderColor: "#94b5c2", data: data, label: "AAPL", spanGaps: true }] };