I am using v2.1.6 I tried to create continuous line when there is a null point in the middle. However, it does not work well in some situations. For example ``` { label: "A random label", data: [20, 30, 80, 90, 50, null, 30], spanGaps: true } ```  ``` { label: "A random label", data: [20, 30, 80, 90, null, 20, 30], spanGaps: true } ``` 