Equations to Graphs With Different Colors

Hi!

I want each line when inserted into the table to graph a line to match the color of the gym membership plan. I am not too sure how the CL works for this. Any help would be greatly appreciated!

First tip. You don’t need to use parseEquation if you’re using “y=”. (You’ll also need to change in your graph to “y=f(x)” for example):

function(`f`): simpleFunction(table250.cellContent(1,2))
function(`g`): simpleFunction(table250.cellContent(2,2))
function(`h`): simpleFunction(table250.cellContent(3,2))

To pick your colors, just put dummy functions into the graph and choose your colors. The CL will overwrite those functions, but keep your color choices:

y=f(x)
y=g(x)
y=h(x)
f(x)=0 #Choose your colors
g(x)=0
h(x)=0
2 Likes