Skip to content

Commit

Permalink
Merge pull request #230 from benjeffery/fix-edges
Browse files Browse the repository at this point in the history
Rearrange edges
  • Loading branch information
benjeffery authored Nov 14, 2024
2 parents 84b2d04 + fc1656f commit ab2307a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tsbrowse/pages/edges.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,12 @@ def make_edges_panel(log_y, node_type, x_range, tsm):

main = main.opts(width=None, height=None, responsive=True)

gspec = pn.GridSpec(sizing_mode="stretch_both", ncols=2, nrows=4)
gspec = pn.GridSpec(sizing_mode="stretch_both", ncols=5, nrows=3)

gspec[0:2, :] = main
gspec[2, 0] = gspan_hist
gspec[2, 1] = tspan_hist
gspec[3, :] = area_hist
gspec[:, :3] = main
gspec[0, 3:] = gspan_hist
gspec[1, 3:] = tspan_hist
gspec[2, 3:] = area_hist

return gspec

Expand Down

0 comments on commit ab2307a

Please sign in to comment.