Group view with graphics

Hi all,

I’m trying to configure my HA (docker image 0.68.1, then 0.69.0b3 with same behaviour) to display graphs in a specific tab.

groups.yaml is :

default_view:
view: no
…other groups…
meteo:
name: “Station Météo”
entities:
- sensor.press_ext
- sensor.t_ext
- sensor.hum_terre
- sensor.dark_sky_precip_probability
graph:
name: “Graph”
entities:
- history_graph.pression
- history_graph.temperature
tab1:
name: “Graphiques”
view: yes
entities:
- group.graph

here is the Overview and graphic tab (in one image as I’m new user :slight_smile:) :

My question is :
Why are graphics Pression and Température displayed in both Overview and Graphiques tab ?
If I add a ‘view: yes’ tag in group meteo, a new tab is created and group ‘meteo’ disappear from Overview… But the same config doesn’t seems to work with graphics…

Any idea ?

Thanks

I actually think that group meteo disappearing from overview is unintended. In my experience, the overview tab always has everything unless you turn it off. I could be remembering incorrectly though because I turn off everything except for a few items in my overview page.

Hi Petro,

Thanks for your reply.

If I add “view: yes” to meteo group, here’s what I get :

-> “Station Météo” with sensors has disappeared from Overview
-> a new tab (Station Météo) has been created that includes the sensors into meteo group

…what is exactly what I need, but with graphs… :slight_smile:

Any other idea ?

default_view:
  view: no

meaning home tab will display everything unless it’s hidden in configuration>customization
this why it shows both in second tab and first tab

if you need something display only in second tab you must do:

default_view:
  view: yes

but this way home tab display only listed entities so you must add all other entities

Hi g0g0,

Don’t have customization into configuration menu…

The strange thing is that what I want to do works fine with an other group (meteo), but not with the one I want (graphs)

Still strange…

You are probably encountering a bug with the history_graph component. Personally, I do what @g0g0 said and only display the information I want on my default page. It cleans things up and can be used as a summery page. The downside is that you need to comment out the default_view: override when adding new devices to verify they work before placing them in the correct spot in your interface.