network/venn plot now maximizes the space available
This commit is contained in:
parent
d27278241c
commit
686a1fdcd1
|
@ -1066,6 +1066,7 @@ class NetworkPlot(Plot):
|
||||||
self.axes.set_yticks([])
|
self.axes.set_yticks([])
|
||||||
self.axes.grid(False)
|
self.axes.grid(False)
|
||||||
self.axes.set_frame_on(False)
|
self.axes.set_frame_on(False)
|
||||||
|
self.fig.subplots_adjust(left=0, right=1, bottom=0, top=1)
|
||||||
|
|
||||||
def rectangle_select_callback(self, x1, y1, x2, y2, key):
|
def rectangle_select_callback(self, x1, y1, x2, y2, key):
|
||||||
ydata = self.yaxis_data
|
ydata = self.yaxis_data
|
||||||
|
@ -1118,6 +1119,7 @@ class VennPlot(Plot):
|
||||||
self.axes.axis('equal')
|
self.axes.axis('equal')
|
||||||
self.axes.grid(False)
|
self.axes.grid(False)
|
||||||
self.axes.set_frame_on(False)
|
self.axes.set_frame_on(False)
|
||||||
|
self.fig.subplots_adjust(left=0, right=1, bottom=0, top=1)
|
||||||
|
|
||||||
def _init_bck(self):
|
def _init_bck(self):
|
||||||
res = 50
|
res = 50
|
||||||
|
|
Reference in New Issue