Adjust stacked chart colors

This commit is contained in:
Tanner
2026-08-27 21:52:07 +00:00
parent 90c3c9eb44
commit a503c5687e
+4 -4
View File
@@ -859,11 +859,11 @@ function Graphs({end, duration}) {
<Water end={end} duration={duration} />
<BedroomSleep end={end} duration={duration} />
<MultiLineChart
title='Lux'
title='Light Level'
measurement='lux'
dataKey='lux'
sensors={['Living Room', 'Kitchen', 'Bedroom', 'Laundry Room']}
colors={['green', 'black', 'red', 'blue']}
colors={['black', 'green', 'red', 'blue']}
end={end}
duration={duration}
yDomain={[0, 250]}
@@ -874,7 +874,7 @@ function Graphs({end, duration}) {
measurement='hpa'
dataKey='hpa'
sensors={['Kitchen', 'Bedroom', 'Laundry Room']}
colors={['black', 'red', 'blue']}
colors={['green', 'red', 'blue']}
end={end}
duration={duration}
yDomain={[87, 91]}
@@ -887,7 +887,7 @@ function Graphs({end, duration}) {
measurement='soil'
dataKey='soil'
sensors={['Dumb Cane', 'Kitchen Pothos', 'Dracaena']}
colors={['black', 'red', 'blue']}
colors={['red', 'green', 'blue']}
end={end}
duration={duration}
yDomain={[0, 100]}