StateName - チャート関数
StateName() は使用されているビジュアライゼーションの並列ステートの名前を返します。
Syntax:
StateName ()
Example 1:
動的テキスト
='Region - ' & if(StateName() = '$', 'Default', StateName())
Example 2:
動的カラー
if(StateName() = 'Group 1', rgb(152, 171, 206),
if(StateName() = 'Group 2', rgb(187, 200, 179),
rgb(210, 210, 210)
)
)