Improved chart visual

This commit is contained in:
douwe
2026-04-24 10:51:48 +02:00
parent ac7c5e6013
commit 0d7bc18293
5 changed files with 55 additions and 114 deletions

View File

@@ -8,7 +8,8 @@ namespace BattSim.Models
public bool DayTariff { get; set; }
public double Consumption { get; set; }
public double Production { get; set; }
public double BatteryCharge { get; set; }
public EnergyData(){}
public EnergyData(EnergyData other)
{
@@ -16,6 +17,7 @@ namespace BattSim.Models
DayTariff = other.DayTariff;
Consumption = other.Consumption;
Production = other.Production;
BatteryCharge = other.BatteryCharge;
}
}
}