Added labels to HSA and FSA

This commit is contained in:
Venrey 2024-07-10 16:52:30 +00:00
parent 42c7f1ed15
commit 812fd90e72

View file

@ -95,13 +95,13 @@ def gen_401K_Catch_Up(wb):
# Generates graph for HSA Contribution
def gen_HSA_Contribution(wb):
fig = make_basic_greenred_NL("HSA Contribution",wb["O Mountain"]["A10"].value,wb["O Mountain"]["C10"].value)
fig = make_basic_greenred("HSA Contribution",wb["O Mountain"]["A10"].value,wb["O Mountain"]["C10"].value)
fig.savefig('./.gen/HSA_Contribution.png',dpi=300)
# Generates graph for FSA Contribution
def gen_FSA_Contribution(wb):
fig = make_basic_greenred_NL("FSA Contribution",wb["O Mountain"]["A12"].value,wb["O Mountain"]["C12"].value)
fig = make_basic_greenred("FSA Contribution",wb["O Mountain"]["A12"].value,wb["O Mountain"]["C12"].value)
fig.savefig('./.gen/FSA_Contribution.png',dpi=300)