我在 spotfire 中创建了一个图形表
我有列“组”、“分数”、“通过/失败”
我想根据分数设置警报图标(通过/失败列)红色或绿色圆圈。但是不同组的通过失败标准是不同的。假设 group1 是 35% 而 group2 是 40%
我怎样才能为此写一个客户表达?
我看不到要在“客户表达式”窗口中选择的组或分数列。我在“列”部分中只看到 Axis.Icon
我正在考虑在图标设置自定义表达式中使用下面这样的东西
case
WHEN [Group] = 'Group1' and [Score] < 35 THEN Axis.Icon = 'Square' and Axis.Icon.Color = 'Red'
WHEN [Group] = 'Group2' and [Score] < 40 THEN Axis.Icon = 'Square' and Axis.Icon.Color = 'Red'
END
谢谢