blob: a6b7bb3ea2ff6334788ff71e3d6af6e702b05eec (
plain)
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
|
---
# table name (required)
name: "Charging Cost, Home Level 1 Charger"
# table columns (required)
cols:
- id: "description"
name: "Description"
tip: "Amount of charge."
- id: "energy"
name: "Energy"
tip: "Amount of energy gained, in kilowatt-hours (kWh)."
align: "right"
- id: "cost"
name: "Cost"
tip: "Total cost of charge."
align: "right"
# table rows (required)
rows:
- description: "50 miles of range"
energy: "14 kWh"
cost: "$2.22"
- description: "90% SoC (270 miles)"
energy: "65.7 kWh"
cost: "$10.32"
- description: "100% SoC (310 miles)"
energy: "75 kWh"
cost: "$11.48"
|