This worked using 504, changing to #550, the visiblitiy tag doesn’t work for frames anymore.
Using the sitemap like that, all charts are displayed. When removing the surrounding frames, the visiblitiy for the chart is correctly evaluated.
Or did the installation of InfluxDB and Grafana do that?
I did not quite understand the problem but would you like to share your result and explain it a little? I can imagine many users to be interested in something like this. A few hints: About the Tutorials & Examples category
Problem:
You want to display a single chart, however you have to select out of a set of different charts. The selection depends on 3 different parameters, for example the Period, the ValueType and ValueOrigin. Solution:
Create the three number items for Period, ValueType and ValueOrigin as well as another number item ChartSelector.
Place three switches on the sitemap, each state of a switch is mapped to a value.
Like this:
Use rule like:
The trick is in different values, which later allows to select the correct chart.
rule “Select Chart”
when
Item ValueType changed or Item Period changed or Item ValueOrigin changed
then
var Number Check
Check=ValueType.state
Check=Check+ Period.state
Check=Check+ ValueOrigin.state
sendCommand(ChartSelector,Check)
end
Hello,
I have exactly the same problem with OH2 and Basic UI. On the first page I have a number of Messages which are displayed in case some condition is met. In case no message needs to be displayed the frame should be invisible. The feature works in iOS App and might work in classic GUI - which means that it is eventually a problem of BasicUI ?