Hi! I'm trying to change the font color using CMYK values provided with data. I've been able to change object (circles, stars, rectangles) using the "rectangle" graphic function like this:
Rectangle(@{rectC}, @{rectM}, @{rectY}, @{rectK})
So "rectC" is a number variable that feeds from my data: |->[rectC]
I'm trying to apply the same logic to this (see below), but I cannot get it to work:
__PrivateInternalStyle("[Default]||||[0,1,0,0]")
I noticed that for "rectangle" function to work, the values have to be numbers from 0-100. The "font color" function uses numbers from 0.0 to 1. I do have data set this way, with decimals, but it still doesn't work.
__PrivateInternalStyle("[Default]||||[
@{C}, @{M}, @{Y}, @{K}]")
Is what I'm trying to do even possible for fonts? Thank you for your help in advance!