package external; import java.io.BufferedReader; import java.io.InputStreamReader; import java.nio.charset.StandardCharsets; import java.util.HashMap; import java.util.logging.Logger; import java.util.stream.Collectors; import org.autoplot.dom.Application; import org.autoplot.dom.DomOps; import org.python.core.Py; import org.python.core.PyObject; import org.python.core.PyString; /** * Jython command for fixLayout. * @author jbf */ public class FixLayoutCommand extends PyObject { Application dom; public FixLayoutCommand( Application dom ) { this.dom= dom; } private static final Logger logger= org.das2.util.LoggerManager.getLogger("autoplot"); public static final PyString __doc__ = new PyString("
horizontalSpacing=1em | Spacing between plots, such as 1em |
verticalSpacing=1em | Spacing between plots, such as 1em |
hideTitles=True | turn off all but the top title\n |
hideTimeAxes=True | turn off all but the bottom axis\n |
hideYAxes=True | turn off y-axes between plots |
moveLegendsToOutsideNE=True | move legends from default inside position to outside, when there is no colorbar. |