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,