Sorry for the delay. Here’s something that should work for you. It should be similar, but without the need for a quickchart template because all of the necessary parameters are contained within the URL.
Here is the resulting image.
Here is how I have the template column configured. You will notice that I just manually filled in the replacement values instead of referring to columns. Obviously you will need to point the replacements to your appropriate columns. Also, it’s required that each date is wrapped in single quotes. You may have to create a template column in your table that contains the dates to join the date with single quotes.
Here is the value for the chart url that you can copy.
https://quickchart.io//chart?c=
{
type: 'line',
data: {
labels: [{dates}],
datasets: [
{
label: 'Weight',
backgroundColor: 'rgb(0, 255, 255)',
borderColor: 'rgb(0, 0, 255)',
data: [{weights}],
fill: false,
},
],
},
options: {
title: {
display: true,
text: 'Weight Chart',
},
"scales": {
}
},
}
Hope that helps.

