Hi! I’m trying to build a chart in HighCharts where the user can changer a parameter control, and that choice reflects in the chart. So, for example, I want to the user to be able to choose the colour of the line. So i’ve given them three parameter controls for Red, Blue, and Green, between 0 and 255. And then I want the colour of the line to change based on what they choose. I’m sure I’ve done the right research here, and have the series colour calling a calculated field like this:
“color”: “${TargetLine1RGBColor}”
The calculated field concats the three parameters into the form. “rgb(x,x,x)”. I know it works because when i create a table and add that field, the output is exactly what I want and changes as i change the parameters.
It works perfect when i insert “rbg(255,0,0)” into the code so i know it’s working when i hard code a colour in.
Anyone have any suggestions?
Thanks!

