Chartjs-How can I make lines fully connected in a multi-line chart even when one dataset is more sparse than another?

0👍

Found the answer here:

https://stackoverflow.com/a/43232364/247722

Add the following to the options object:

        options: {
             spanGaps: true,

I haven’t been able to find documentation for this param, however, so not sure how well supported it is.

Leave a comment