-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
8 additions
and
18 deletions.
There are no files selected for viewing
14 changes: 5 additions & 9 deletions
14
...ges/charging-page/components/cell-temp/cell-temp-display/cell-temp-display.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,20 @@ | ||
<info-background svgIcon="thermostat" title="Cell Temp" [button]="resetGraphButton"> | ||
<hstack> | ||
<vstack style="width: 10%"> | ||
<hstack> | ||
<typography variant="info-value" [content]="avgTemp.toString() + '°'" /> | ||
</hstack> | ||
<vstack style="width: 10%; padding-bottom: 30px"> | ||
<typography variant="info-value" [content]="avgTemp.toString() + '°'" /> | ||
<typography variant="info-subtitle" content="Avg. Temp" /> | ||
</vstack> | ||
|
||
<!--TODO: temp fix for divider setting pixel height: is only way for divider to show--> | ||
<divider style="height: 100px"></divider> | ||
|
||
<vstack style="width: 10%"> | ||
<hstack> | ||
<typography variant="info-value" [content]="maxTemp.toString() + '°'" /> | ||
</hstack> | ||
<vstack style="width: 10%; padding-bottom: 30px"> | ||
<typography variant="info-value" [content]="maxTemp.toString() + '°'" /> | ||
<typography variant="info-subtitle" content="Max. Temp" /> | ||
</vstack> | ||
<!--TODO: (temp fix: padding-bottom) temp fix for voltage graph being centered (and not all the way on bottom of comp)--> | ||
<!--if it is not desktop, we want to show graph seperately... TODO: need to figure out best logic for enforcing that this is done... | ||
or just don't enforce --> | ||
<cell-temp-graph style="width: 80%; padding-bottom: 35px" [resetGraph]="resetGraph"></cell-temp-graph> | ||
<cell-temp-graph style="width: 85%; padding-bottom: 30px" [resetGraph]="resetGraph"></cell-temp-graph> | ||
</hstack> | ||
</info-background> |
8 changes: 1 addition & 7 deletions
8
...c/pages/charging-page/components/cell-temp/cell-temp-graph/cell-temp-graph.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
<graph-component | ||
[data]="cellTempData" | ||
graphContainerId="cellTempGraph" | ||
icon="speed" | ||
title="Voltage Over Time" | ||
color="#ffffff" | ||
> | ||
<graph-component [data]="cellTempData" graphContainerId="cellTempGraph" icon="speed" title="Cell Temp" color="#ffffff"> | ||
</graph-component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters