Changeset 1302 for cpp/frams/_demos/geneprops_graph.py
- Timestamp:
- 04/25/24 21:59:54 (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified cpp/frams/_demos/geneprops_graph.py ¶
r1242 r1302 43 43 segs.append( ((len(n[0]),n[1]),(len(n[0])+1,child[1])) ) 44 44 45 linecol = LineCollection(segs, linewidths=2, linestyle='solid' )45 linecol = LineCollection(segs, linewidths=2, linestyle='solid', color='#ddddff') 46 46 ax.add_collection(linecol) 47 47 … … 55 55 56 56 ax.xaxis.set_visible(False) 57 plt.tight_layout() 57 58 plt.show()
Note: See TracChangeset
for help on using the changeset viewer.