
* Add custom ui documentation * Documentation for history_graph * history_graph is due for 0.55
1.7 KiB
layout | title | description | date | sidebar | comments | sharing | footer | ha_category | logo | ha_release |
---|---|---|---|---|---|---|---|---|---|---|
page | History Graph | Instructions for setting up History Graph. | 2017-09-20 15:00 | true | false | true | true | History | home-assistant.png | 0.55 |
The history_graph
component will make the UI display a graph similar to the graphs in more-info
popups and the history panel.
To use this component in your installation, add the following to your configuration.yaml
file:
# Minimal configuration.yaml entry
history_graph:
gr1:
entities:
- light.ceiling.lights
{% linkable_title Configuration variables %}
| Attribute | Optional | Default | Description |
|---------------------------|----------|-------------------------------------------------------|
| entities
| no | | List of entities whose history to show as a graph. |
| name
| yes | ID | Name to display. |
| hours_to_show
| yes | 24 | Number of hours to show. |
| refresh
| yes | 0 | Number of seconds between graph refreshes. 0 for no refreshes. |
{% linkable_title Full Example %}
# Full configuration.yaml entry
history_graph:
gr1:
name: Lights Graph
entities:
- light.ceiling.lights
- light.bed_light
hours_to_show: 240
refresh: 60
gr2:
name: Temperature
entities:
- sensor.outside_temperature
- sensor.inside_temperature
hours_to_show: 120
# refresh: 0