-
Hi, I would to plot the state of my climate entity, Heat/off/cooling etc. Or perhaps you have a recommendation that is altogether different for plotting the states ? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Would love to know this too! |
Beta Was this translation helpful? Give feedback.
-
Force order of y axis categorical valueslayout:
yaxis2:
categoryorder: array
categoryarray:
- 'off'
- 'on'
- 'Heat'
- 'Cooling' |
Beta Was this translation helpful? Give feedback.
-
Subplot row heightThis you can't do if you use a grid, you need to manually specify the domain of each y axis no_default_layout: true
layout:
showlegend: false
hovermode: x
dragmode: pan
margin:
t: 30
l: 45
r: 30
b: 50
height: 650
yaxis:
domain: [0, .1]
title:
text: Short
yaxis2:
domain: [.1, .4]
title:
text: Mid
yaxis3:
domain: [.4, 1]
title:
text: Tall BTW, next time please paste your yaml too, it's easier for me to know what's going on and it serves as an example for anybody who likes the screenshot :) |
Beta Was this translation helpful? Give feedback.
Subplot row height
This you can't do if you use a grid, you need to manually specify the domain of each y axis
BTW, next time please paste your yaml too, it's easier for me to know what's going on and it serves as an example for anybody who likes the screenshot :)