Update app.py
Browse files
app.py
CHANGED
@@ -196,8 +196,8 @@ else:
|
|
196 |
# Creating the line plot for the number of brick kilns over the years
|
197 |
fig_line = go.Figure()
|
198 |
|
199 |
-
fig_line.add_trace(go.Scatter(x=years, y=brick_kilns_total, mode='lines+markers', name='Total Brick Kilns', line=dict(color='
|
200 |
-
fig_line.add_trace(go.Scatter(x=years, y=brick_kilns_fcb, mode='lines+markers', name='FCBTK', line=dict(color='
|
201 |
fig_line.add_trace(go.Scatter(x=years, y=brick_kilns_zigzag, mode='lines+markers', name='Zigzag Brick Kilns', line=dict(color='green')))
|
202 |
|
203 |
# Adding labels and title to the line chart
|
|
|
196 |
# Creating the line plot for the number of brick kilns over the years
|
197 |
fig_line = go.Figure()
|
198 |
|
199 |
+
fig_line.add_trace(go.Scatter(x=years, y=brick_kilns_total, mode='lines+markers', name='Total Brick Kilns', line=dict(color='black')))
|
200 |
+
fig_line.add_trace(go.Scatter(x=years, y=brick_kilns_fcb, mode='lines+markers', name='FCBTK', line=dict(color='red')))
|
201 |
fig_line.add_trace(go.Scatter(x=years, y=brick_kilns_zigzag, mode='lines+markers', name='Zigzag Brick Kilns', line=dict(color='green')))
|
202 |
|
203 |
# Adding labels and title to the line chart
|