I’d like to make some components for charts, using loopers and parameters to give some customization options for color. So far, this all works pretty well. However, all of my chart’s elements are the same color, since I don’t know how many data points there will be when building the component.
Using the color picker, is it possible to have a range of colors? For example, the user could input rgb(100,150,200), and the component would calculate each element’s color as something like rgb(100*{{dc:random:float min=".8" max=“1.2”}}, 150*{{dc:random…)?
Failing that, could I present the user with several color pickers and then loop through them as I loop through the data source (so, say the user is presented with “element color 1 … n”, and then the different elements use different colors from the parameters)?