Is there a way to map enums to values?
I have a method of mapping numbers to text: -1 → "unknown" 0 → "very low" 1 → "low" 2 → "high" 3 → "very high" I want to be able to create a graph (bar, or line, or etc) using these values, but I want the label for the number to show as the associated text. I tried using beast mode to convert the numbers to text, but then…