Parse a string array?

Hi,
is it possible to use any operations in text field for a label?
I want to make a hourly weather preview (each 3 hours) in detail view but do not want to create for each 3-hour a new attribute (temp_min,max,hum,rain,icon) but would like to use something like one string as array and split the array in detail view in field like @Device.mytime.split(";")[1] , @Device.htemp_min.split(";")[1], …

Also tried to use arrays in attributes, but it seems also not to be right…

Is this possible? Have tried several ways, but get empty results only :wink:

What could be the best way for this?

Thanks!

You can’t access individual elements of an array with a Label. Only the GridView & ComboBox controls are compatible with arrays. I’m not sure what the best solution is for you here.