Hey guys,
So, I know we’ve covered this, but I’m picking up on the thread started by @Koichi_Tsuji on Radial Gauges using QuickChart.
CONCATENATE("https://quickchart.io/chart?c={
type:'radialGauge',
data:{
datasets:[{
data:[",NUMBER([Percentage]*100),"],
backgroundColor:'rgb(0, 100, 0)'
}]
},
options:{
trackColor: 'rgb(220, 220, 220)',
centerPercentage: 80,
roundedCorners: true,
centerArea:{text:' ",
NUMBER([Percentage]*100), "%25'}
}
}"
)
I have this inspired expression that handles the generation of charts in my app perfectly. What I’d like to do is have the RGB change based on the [Percentage] value. Is this possible in AppScript?
Searching around, it appears that people have achieved the same in java here, but I honestly haven’t a clue how to translate it.
Would be grateful for any help.

