Make subplot proportion slightly larger
parent
fd5c72f97d
commit
1c59a01a78
|
@ -26,9 +26,11 @@ import numpy as np
|
||||||
|
|
||||||
|
|
||||||
def mk_marker(
|
def mk_marker(
|
||||||
|
|
||||||
style,
|
style,
|
||||||
size: float = 20.0,
|
size: float = 20.0,
|
||||||
use_qgpath: bool = True,
|
use_qgpath: bool = True,
|
||||||
|
|
||||||
) -> QGraphicsPathItem:
|
) -> QGraphicsPathItem:
|
||||||
"""Add a marker to be displayed on the line wrapped in a ``QGraphicsPathItem``
|
"""Add a marker to be displayed on the line wrapped in a ``QGraphicsPathItem``
|
||||||
ready to be placed using scene coordinates (not view).
|
ready to be placed using scene coordinates (not view).
|
||||||
|
|
|
@ -296,7 +296,7 @@ class LinkedSplits(QtWidgets.QWidget):
|
||||||
|
|
||||||
def set_split_sizes(
|
def set_split_sizes(
|
||||||
self,
|
self,
|
||||||
prop: float = 0.28 # proportion allocated to consumer subcharts
|
prop: float = 0.375 # proportion allocated to consumer subcharts
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Set the proportion of space allocated for linked subcharts.
|
"""Set the proportion of space allocated for linked subcharts.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue