ProtonDataLabs commited on
Commit
0335c15
·
unverified ·
1 Parent(s): c0105b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -69,8 +69,9 @@ else:
69
 
70
  # Plotting
71
  fig = go.Figure()
72
- fig.add_trace(go.Scatter(x=x, y=team_price_per_month, name='ChatGPT Plus', fillcolor="red"))
73
- fig.add_trace(go.Scatter(x=x, y=api_price_per_month + development_cost, name='Custom-Chatgpt', fillcolor="darkgreen"))
 
74
 
75
  fig.update_layout(title="Accumulated Monthly Costs Over Time",
76
  xaxis_title="Time in Months",
 
69
 
70
  # Plotting
71
  fig = go.Figure()
72
+ fig.add_trace(go.Scatter(x=x, y=team_price_per_month, name='ChatGPT Plus', fillcolor="red", line=dict(color='red')))
73
+ fig.add_trace(go.Scatter(x=x, y=api_price_per_month + development_cost, name='Custom-Chatgpt', fillcolor="green", line=dict(color='green')))
74
+
75
 
76
  fig.update_layout(title="Accumulated Monthly Costs Over Time",
77
  xaxis_title="Time in Months",