-
Notifications
You must be signed in to change notification settings - Fork 16
/
chart-config.yaml.sample
88 lines (79 loc) · 2.15 KB
/
chart-config.yaml.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
# The chart server configuration
# Changes will need a server restart
serverConfig:
debug: false
savePath: data
serverPort: 8321
wsServerPort: 8322
# MQTT params
# Replace with your own MQTT broker
mqttUrl: "mqtt:localhost:1883"
mqttOptions:
username:
password:
# Priceinfo topic
priceTopic: elwiz/prices
chartTopic: elwiz/chart
# Home Assistant
hassPublish: true
haBaseTopic: elwiz
haAnnounceTopic: homeassistant
# Factor for calculating green/red zones
# % added/subracted to/from average price
# It is permanent until changed here
fixedAverageOffset: 0.0
# Used for multiplying the value from the
# adjustLeftAvgOffset and adjustRightAvgOffset
# MQTT messages
adjustmentStepFactor: 1.0
verticalStepCount: 50
# Change according to your own language/country
currencyCode: NOK
# The chart web client configuration
# Reload browser to activate changes
chartConfig:
# Replace with IP address of server if running remote
# The port number needs to be
# equal to the "wsServerPort" above
wsUrl: "ws://localhost:8322/"
# Set this to "true" if you want
# dark mode on mobile devices
darkMode: false
# Set true if you want the Y axis to start at 0
yBeginAtZero: false
# Web client debug
debug: false
# Change according to your own country
languageCode: nb-NO
currencyCode: NOK
# Display text according to "languageCode"
# Possibly add your own translation
en-GB:
titleString: Hourly energy prices
todayString: Today
markerTitle: Time markers
midnightTitle: Midnight
nowTitle: Current time
zoneTitle: Bar colors
greenTitle: Green zone
redTitle: Red zone
de-DE:
titleString: Stündliche energiepreise
todayString: Heute
markerTitle: Zeitmarkierungen
midnightTitle: Mitternacht
nowTitle: Aktuelle uhrzeit
zoneTitle: Balkenfarben
greenTitle: Grüne zone
redTitle: Rote zone
nb-NO:
titleString: Energipriser per time
todayString: I dag
markerTitle: Tidsmarkører
midnightTitle: Midnatt
nowTitle: Nå
zoneTitle: Søylefarger
greenTitle: Grønn sone
redTitle: Rød sone
# Add your own translation here