HowTo use two settings for selecting which chart to display?

Hi,
I’m using a chart with 3-state selector in order to show different time-frames (Day, Week, Month).
Like:

Frame label=“Value1” {
Switch item=Chart_Period label= “” mappings=[0=“Day”, 1=“Week”, 2=“Month”]
Chart item=Value1 period=D refresh=300000 visibility=[Chart_Period==0, Chart_Period==“Uninitialized”]
Chart item=Value1 period=W refresh=600000 visibility=[Chart_Period==1]
Chart item=Value1 period=M refresh=600000 visibility=[Chart_Period==2]}

Now I’d like to have an additional switch, in order to select another perstited item. Is that possible?

Reading a reply from @ThomDietrich I figured that using the visiblity flag on frames can be used to do that.

1 Like