Hi! I’m new to QuickChart and to JavaScript in general. I hope someone would be able to help with what I’m trying to accomplish.
My aim is to be able to generate a line chart with two lines, with the spanGaps option turned on so that empty values do not break the line. So far so good, I can manage that much.
I then want to style line segments bridging the gaps so that there is a dashed line connecting points between which there is no data. I’ve been looking at this page: Line Segment Styling | Chart.js
The example given in ChartJS’s docs seems to use a “helper” function called “skipped” that allows styling line segments exactly like I need. However, I am not sure whether such a helper function can be defined when generating a chart only using the sandbox.
For context, I am trying to generate a chart to be used within an AppSheet app.
Any help would be appreciated!