I am attempting to calculate the span value using a defined view parameter labeled "MAX_EU". Basically whenever the min and max values are defined for each variation of the view template, I want the linear scale's span to be automatically calculated based off the max value that was defined for the template view variant. I attempted to use this expression: {view.params.MAX_EU}/{5}, but getting the message "Error_ExpressionEval". Can someone tell me if this is actually possible or if there's an issue with the expression.
Are you trying to divide by 5 or is there some parameter you have that is named 5
(which I am not sure is valid).
I think you may want {view.params.MAX_EU}/5
Thanks for your response! I tried that expression and that didn't work. The message stated the expression could not write a value to a number. I ended up creating another view param for span and will just manually insert the value for now.