Enum PaneLayout
Define the auto layout options for the SetLayout(Graphics, PaneLayout) method.
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
public enum PaneLayout
Fields
Name | Description |
---|---|
ExplicitCol12 | Layout the GraphPane's with an explicit number of columns: The first row has 1 column and the second row has 2 columns for a total of 3 panes. |
ExplicitCol21 | Layout the GraphPane's with an explicit number of columns: The first row has 2 columns and the second row has 1 column for a total of 3 panes. |
ExplicitCol23 | Layout the GraphPane's with an explicit number of columns: The first row has 2 columns and the second row has 3 columns for a total of 5 panes. |
ExplicitCol32 | Layout the GraphPane's with an explicit number of columns: The first row has 3 columns and the second row has 2 columns for a total of 5 panes. |
ExplicitRow12 | Layout the GraphPane's with an explicit number of rows: The first column has 1 row and the second column has 2 rows for a total of 3 panes. |
ExplicitRow21 | Layout the GraphPane's with an explicit number of rows: The first column has 2 rows and the second column has 1 row for a total of 3 panes. |
ExplicitRow23 | Layout the GraphPane's with an explicit number of rows: The first column has 2 rows and the second column has 3 rows for a total of 5 panes. |
ExplicitRow32 | Layout the GraphPane's with an explicit number of rows: The first column has 3 rows and the second column has 2 rows for a total of 5 panes. |
ForceSquare | Layout the GraphPane's so they are in a square grid (always 2x2, 3x3, 4x4), leaving blank spaces as required. |
SingleColumn | Layout the GraphPane's in a single column |
SingleRow | Layout the GraphPane's in a single row |
SquareColPreferred | Layout the GraphPane's so they are in a general square (2x2, 3x3, etc.), but use extra columns when necessary (row x column = 1x2, 2x3, 3x4, etc.) depending on the total number of panes required. |
SquareRowPreferred | Layout the GraphPane's so they are in a general square (2x2, 3x3, etc.), but use extra rows when necessary (2x1, 3x2, 4x3, etc.) depending on the total number of panes required. |