Spaces:
Runtime error
Runtime error
James McCool
commited on
Commit
·
6af8f06
1
Parent(s):
0c29f50
Fix column name in game rotation timeline plot
Browse files
app.py
CHANGED
@@ -695,7 +695,7 @@ with tab5:
|
|
695 |
game_rot_stats = check_rotation.reindex(game_rot_cols,axis="columns")
|
696 |
game_rot_stats = game_rot_stats.drop_duplicates(subset='backlog_lookup')
|
697 |
|
698 |
-
fig = px.timeline(check_rotation, x_start="Start", x_end="Finish", y="
|
699 |
# fig.update_yaxes(autorange="reversed")
|
700 |
|
701 |
# fig.layout.xaxis.type = 'linear'
|
|
|
695 |
game_rot_stats = check_rotation.reindex(game_rot_cols,axis="columns")
|
696 |
game_rot_stats = game_rot_stats.drop_duplicates(subset='backlog_lookup')
|
697 |
|
698 |
+
fig = px.timeline(check_rotation, x_start="Start", x_end="Finish", y="delta", range_x=[0,check_rotation["Finish"].max()], text='Task')
|
699 |
# fig.update_yaxes(autorange="reversed")
|
700 |
|
701 |
# fig.layout.xaxis.type = 'linear'
|