Hey @Darren_Murphy,
I try to explain better the problem. I use a chart with quickchart.io with opacity.
The expected result : i would like to get a chart with my data and see opacity because i don’t see the numbers of the chart.
My problem : Glide doesn’t recognize the opacity in this case. See the pictures up.
The configuration :
{
type: 'polarArea',
data: {
datasets: [
{
data: ['Z', 'B', 'C', 'Y'],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(255, 159, 64, 0.2)',
'rgba(255, 205, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(54, 162, 235, 0.2)',
],
label: 'My dataset',
},
],
labels: ['Écrit 1', 'Écrit 2', 'Écrit Interne', 'Travaux Dirigés'],
},
options: {
legend: {
position: 'right',
},
title: {
display: true,
text: 'Mes corrections',
},
},
}
You can see, i use “rgba” and no “rgb”. The opacity is 0.2 BUT it doesn’t work.
After, i use the column “Construct URL” with
Protocol : https
Host : quickchart.io
Path : Chart
And in Query Parameters :
c → My template (with the chart’s configuration)
Thanks for your time,