Spaces:
Runtime error
Runtime error
James McCool
commited on
Commit
·
d760e28
1
Parent(s):
65ddb51
Disable y-axis auto-reversal in game rotation timeline plot
Browse files
app.py
CHANGED
@@ -699,7 +699,7 @@ with tab5:
|
|
699 |
game_rot_stats = game_rot_stats.drop_duplicates(subset='backlog_lookup')
|
700 |
|
701 |
fig = px.timeline(check_rotation, x_start="Start", x_end="Finish", y="Task", range_x=[0,check_rotation["Finish"].max()], text='minutes')
|
702 |
-
fig.update_yaxes(autorange="reversed")
|
703 |
|
704 |
# fig.layout.xaxis.type = 'linear'
|
705 |
# fig.data[0].x = check_rotation.delta.tolist()
|
|
|
699 |
game_rot_stats = game_rot_stats.drop_duplicates(subset='backlog_lookup')
|
700 |
|
701 |
fig = px.timeline(check_rotation, x_start="Start", x_end="Finish", y="Task", range_x=[0,check_rotation["Finish"].max()], text='minutes')
|
702 |
+
# fig.update_yaxes(autorange="reversed")
|
703 |
|
704 |
# fig.layout.xaxis.type = 'linear'
|
705 |
# fig.data[0].x = check_rotation.delta.tolist()
|