Iāve encountered a problem with templates that I generate using Quickchart. Links stop working after a few days and I need to regenerate a template link to be able to show charts in the app again.
Anyone here with the same issue?
We typically donāt use quickchart templates. Normally we build out the full url which includes both the data and the chart design without saving it as a template.
Can you explain what you mean by āwork in browserā?
(2) I copy the construct URL and put in browser it works
Can you copy your full template column here in a comment, and a sample URL that works in the browser for us to test?
{
type: 'gauge',
data: {
datasets: [
{
value: _Q_,
data: [250, 750, 3000],
backgroundColor: ['blue', 'green', 'Orange'],
borderWidth: 2,
},
],
},
options: {
valueLabel: {
fontSize: 22,
backgroundColor: 'transparent',
color: '#000',
formatter: function (value, context) {
return value + ' POINT';
},
bottomMarginPercentage: 10,
},
},
}
Does the number contain any formatting or separators, etc?
quickchart expects a number, not a string.
If you pass something like 75% or 1500 THB (for example), it will break.
try again ,without change it 's working. Thank you
Hey all, Very Basic Questionā¦Iām having troubles integrating my QC into glide. Hereās the basic setupā¦
3 columns. (Month, Widgets, Chart Template) There will be ~ 50 rows of data.
Here is my QC template inputā¦
https://quickchart.io/chart?c={type:ālineā,data:{labels:[Month],datasets:[{label:āProductionā,data:[Widgets],fill:false,borderColor:āblueā},]}}
Then I have the appropriate replacements of āmonthā and āwidgetsā to their respective columns in my Glide tables.
When I create an image in Layout and direct it to my āChart Templateā it is only plotting the first data point (1st row).
How do I plot the entire column? What am I doing wrong?
You will need a Joined List column to get data from multiple rows. Then you can merge that joined list into your template.

