HABdroid 1.8.0.3 Charting Group Items

I installed the update an tried to display grouped items. Using the it on the sitemap like:

Frame label=“Preisverlauf Classic Nordholz” visibility=[Sprit_Art==0, Sprit_Art==“NULL”] {
Chart item=gE10* period=D refresh=300000 visibility=[Sprit_Chart_Period==0, Sprit_Chart_Period==“NULL”]
Chart item=gE10* period=W refresh=600000 visibility=[Sprit_Chart_Period==1]
Chart item=gE10* period=M refresh=600000 visibility=[Sprit_Chart_Period==2]}

I only get the period “D” shown in all “Sprit_Chart_Period” settings. This setup works for a single item as expected and it shows all 3 items in the group gE10 for a single day.

You need to put the Sprit_Chart_Period on the sitemap as a Switch with MAPPINGS for each of the periods to switch between them.

Switch item=Sprit_Chart_Periodlabel="Period" mappings=[0="Day", 1="Week", 2="Month"]
Chart item=gE10* period=D refresh=300000 visibility=[Sprit_Chart_Period==0, Sprit_Chart_Period=="NULL"] 
Chart item=gE10* period=W refresh=600000 visibility=[Sprit_Chart_Period==1]
Chart item=gE10* period=M refresh=600000 visibility=[Sprit_Chart_Period==2]

That’s correct, I didn’t post that part (amongst others). I do have that switch and the switch “Sprit_Art” on the sitemap. As said, the setup is working for a single item, what isn’t working is the change to periods other then Day if a group shall be displayed!

Me stupid.
I did use the syntax for groups as in the persistence files. That is the cause! When using “gE10” without the “*” it works as expected!